Skip to content

Commit

Permalink
Merge pull request #4 from mmolimar/fix/lib-deps
Browse files Browse the repository at this point in the history
Fix library dependencies
  • Loading branch information
mmolimar authored May 9, 2017
2 parents fc3a610 + 4f45578 commit febd77a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.mmolimar.kafka.connect</groupId>
<artifactId>kafka-connect-fs</artifactId>
<version>0.2-SNAPSHOT</version>
<version>0.1.1.1</version>
<packaging>jar</packaging>

<name>kafka-connect-fs</name>
Expand Down Expand Up @@ -43,10 +43,16 @@
<artifactId>hadoop-client</artifactId>
<version>${hadoop.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-aws</artifactId>
<version>${hadoop.version}</version>
</dependency>
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro-tools</artifactId>
<version>${avro.version}</version>
<classifier>nodeps</classifier>
</dependency>
<dependency>
<groupId>org.apache.avro</groupId>
Expand Down
11 changes: 11 additions & 0 deletions src/main/assembly/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,17 @@
<useTransitiveFiltering>true</useTransitiveFiltering>
<excludes>
<exclude>org.apache.kafka:connect-api</exclude>
<exclude>org.mortbay.jetty:*</exclude>
<exclude>com.sun.jersey:*</exclude>
<exclude>org.eclipse.jetty.aggregate:jetty-all</exclude>
<exclude>com.sun.jersey.contribs:jersey-guice</exclude>
<exclude>com.google.guava:guava</exclude>
<exclude>org.apache.zookeeper:zookeeper</exclude>
<exclude>log4j:log4j</exclude>
<exclude>org.slf4j:slf4j-api</exclude>
<exclude>org.slf4j:slf4j-log4j12</exclude>
<exclude>javax.servlet:servlet-api</exclude>
<exclude>javax.servlet.jsp:jsp-api</exclude>
</excludes>
</dependencySet>
</dependencySets>
Expand Down

0 comments on commit febd77a

Please sign in to comment.