Skip to content

Commit

Permalink
Update Kafka Connect and AWS SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanmei committed Jun 17, 2022
1 parent 26a5af6 commit a694dfa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 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
10 changes: 8 additions & 2 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

0 comments on commit a694dfa

Please sign in to comment.