Skip to content

Commit 252c416

Browse files
Issue 31 (#33)
* Exclude netty for the netty that is already on the classpath. Fixes #31. * Moved to 2.4.0 to build properly on 11. * Set javadoc version. * Use the connect-maven plugin to filter the assemblies. Disable assembly generation. Update the config to look at the components directory. * Revert to 2.2.1-cp1.
1 parent bf89bbb commit 252c416

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

config/connect-avro-docker.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ internal.key.converter.schemas.enable=false
2929
internal.value.converter.schemas.enable=false
3030
offset.storage.file.filename=/tmp/connect.offsets
3131
rest.port=10000
32-
plugin.path=target/kafka-connect-target/usr/share/kafka-connect
32+
plugin.path=target/components/packages

pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,19 @@
6666
</dependencies>
6767
<build>
6868
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-javadoc-plugin</artifactId>
72+
<configuration>
73+
<source>8</source>
74+
</configuration>
75+
</plugin>
76+
<plugin>
77+
<artifactId>maven-assembly-plugin</artifactId>
78+
<configuration>
79+
<skipAssembly>true</skipAssembly>
80+
</configuration>
81+
</plugin>
6982
<plugin>
7083
<groupId>io.confluent</groupId>
7184
<artifactId>kafka-connect-maven-plugin</artifactId>
@@ -96,6 +109,9 @@
96109
<![CDATA[This connector is <a href="https://www.confluent.io/subscription/">supported by Confluent</a> as part of a
97110
<a href="https://www.confluent.io/product/confluent-platform/">Confluent Platform</a> subscription.]]>
98111
</supportSummary>
112+
<excludes>
113+
<exclude>io.netty:*</exclude>
114+
</excludes>
99115
</configuration>
100116
</execution>
101117
</executions>

src/test/resources/logback.xml

+1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
<appender-ref ref="STDOUT" />
99
</root>
1010
<logger name="com.github.jcustenborder.kafka.connect.redis" level="TRACE" />
11+
<logger name="org.reflections.Reflections" level="ERROR" />
1112
</configuration>

0 commit comments

Comments
 (0)