Skip to content

Commit

Permalink
Merge pull request #29 from Nordstrom/update_connect_version
Browse files Browse the repository at this point in the history
Update Kafka Connect and AWS SDK version
  • Loading branch information
dylanmei authored Jun 17, 2022
2 parents cc7ce2e + a694dfa commit fc0e6a9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The SQS connector plugin provides the ability to use AWS SQS queues as both a so
|1.1.0|2.2.0|1.11.501|
|1.2.0|2.3.0|1.11.924|
|1.3.0|2.8.1|1.11.1034|
|1.4.0|3.1.1|1.12.241|

Due to a compatibility issue with [Apache httpcomponents](http://hc.apache.org/), connector versions 1.1.0 and earlier may not work with Kafka Connect versions greater than 2.2

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ version: "3"

services:
zookeeper:
image: confluentinc/cp-zookeeper:5.5.2
image: confluentinc/cp-zookeeper:7.1.1
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ports:
- 2181:2181
logging: { driver: none }

broker:
image: confluentinc/cp-kafka:6.0.1
image: confluentinc/cp-kafka:7.1.1
ports:
- 9092:9092
environment:
Expand All @@ -32,7 +32,7 @@ services:

# NB: run connect locally in stand-alone mode to debug
connect:
image: confluentinc/cp-kafka-connect:6.0.1
image: confluentinc/cp-kafka-connect:7.1.1
ports:
- 8083:8083
environment:
Expand Down
12 changes: 9 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
<maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version>

<aws-java-sdk.version>1.11.1034</aws-java-sdk.version>
<kafka.connect-api.version>2.8.1</kafka.connect-api.version>
<aws-java-sdk.version>1.12.241</aws-java-sdk.version>
<kafka.connect-api.version>3.1.1</kafka.connect-api.version>
<slf4j.version>1.7.36</slf4j.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -89,6 +90,11 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -146,7 +152,7 @@
<goal>shade</goal>
</goals>
<configuration>
<outputDirectory>target/plugin</outputDirectory>
<outputFile>target/plugin/${project.artifactId}-${project.version}.jar</outputFile>
<filters>
<filter>
<artifact>*:*</artifact>
Expand Down

0 comments on commit fc0e6a9

Please sign in to comment.