Skip to content

Commit

Permalink
Issue 31 (#33)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
jcustenborder authored Mar 24, 2021
1 parent bf89bbb commit 252c416
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/connect-avro-docker.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ internal.key.converter.schemas.enable=false
internal.value.converter.schemas.enable=false
offset.storage.file.filename=/tmp/connect.offsets
rest.port=10000
plugin.path=target/kafka-connect-target/usr/share/kafka-connect
plugin.path=target/components/packages
16 changes: 16 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,19 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>8</source>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<skipAssembly>true</skipAssembly>
</configuration>
</plugin>
<plugin>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-maven-plugin</artifactId>
Expand Down Expand Up @@ -96,6 +109,9 @@
<![CDATA[This connector is <a href="https://www.confluent.io/subscription/">supported by Confluent</a> as part of a
<a href="https://www.confluent.io/product/confluent-platform/">Confluent Platform</a> subscription.]]>
</supportSummary>
<excludes>
<exclude>io.netty:*</exclude>
</excludes>
</configuration>
</execution>
</executions>
Expand Down
1 change: 1 addition & 0 deletions src/test/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
<appender-ref ref="STDOUT" />
</root>
<logger name="com.github.jcustenborder.kafka.connect.redis" level="TRACE" />
<logger name="org.reflections.Reflections" level="ERROR" />
</configuration>

0 comments on commit 252c416

Please sign in to comment.