Skip to content

Commit

Permalink
fixed apache commons-logging not being included in jar
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLeoni committed Nov 15, 2015
1 parent 83981bd commit 77412b2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
13 changes: 9 additions & 4 deletions docs/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ JACKAN RELEASE NOTES

Project website: http://opendatatrentino.github.io/jackan

<br/>

#### 0.4.1
### 0.4.2

November 15th, 2015

- fixed apache commons-logging not being included in jar

### 0.4.1

November 15th, 2015

Expand Down Expand Up @@ -47,10 +52,10 @@ BREAKING CHANGES:
- renamed `TrackingSummary` into `CkanTrackingSummary`


#### 0.3.1 - 19 January 2015
### 0.3.1 - 19 January 2015

- implemented reading and searching from CKAN

#### 0.2.0
### 0.2.0

- deprecated version - it's a legacy release for projects depending on it
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,18 @@
<include>org.apache.httpcomponents:httpmime</include>
<include>org.apache.httpcomponents:fluent-hc</include>
<include>org.apache.httpcomponents:httpclient</include>
<include>commons-logging:*</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.http</pattern>
<shadedPattern>eu.trentorise.opendata.jackan.internal.org.apache.http</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons</pattern>
<shadedPattern>eu.trentorise.opendata.jackan.internal.org.apache.commons</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
Expand Down Expand Up @@ -208,6 +213,12 @@
<dependency>
<groupId>eu.trentorise.opendata</groupId>
<artifactId>traceprov</artifactId>
<exclusions>
<exclusion>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit 77412b2

Please sign in to comment.