Skip to content

Commit

Permalink
Bump Kafka to 3.1.0 (Debezium 1.9.2, Confluent 7.1.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
slominskir committed May 2, 2022
1 parent d09c740 commit fe17d29
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
15 changes: 6 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ plugins {
}

group 'org.jlab'
version '4.0.0'

ext.confluentVer = '7.0.1'
ext.kafkaVer = '3.0.0'
version '4.1.0'

tasks.withType(JavaCompile) {
options.release = 11
Expand All @@ -26,12 +23,12 @@ repositories {
}

dependencies {
implementation "org.apache.kafka:kafka-streams:" + kafkaVer,
"io.confluent:kafka-streams-avro-serde:" + confluentVer,
"org.apache.avro:avro:1.10.2",
implementation "org.apache.kafka:kafka-streams:3.1.0",
"io.confluent:kafka-streams-avro-serde:7.1.1",
"org.apache.avro:avro:1.11.0",
"org.slf4j:slf4j-log4j12:1.7.36",
"org.jlab:jaws-libj:4.0.0"
testImplementation "org.apache.kafka:kafka-streams-test-utils:" + kafkaVer,
"org.jlab:jaws-libj:4.1.0"
testImplementation "org.apache.kafka:kafka-streams-test-utils:3.1.0",
"junit:junit:4.13.2"
}

Expand Down
8 changes: 4 additions & 4 deletions deps.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
services:
zookeeper:
image: debezium/zookeeper:1.8.1.Final
image: debezium/zookeeper:1.9.2.Final
hostname: zookeeper
container_name: zookeeper
ports:
- "2181:2181"

kafka:
image: debezium/kafka:1.8.1.Final
image: debezium/kafka:1.9.2.Final
hostname: kafka
container_name: kafka
depends_on:
Expand All @@ -19,7 +19,7 @@ services:
CREATE_TOPICS: 'epics-channels:1:1:compact'

registry:
image: confluentinc/cp-schema-registry:7.0.1
image: confluentinc/cp-schema-registry:7.1.1
hostname: registry
container_name: registry
depends_on:
Expand All @@ -32,7 +32,7 @@ services:
SCHEMA_REGISTRY_HOST_NAME: registry

jaws:
image: slominskir/jaws:4.2.0
image: slominskir/jaws:4.2.3
hostname: jaws
container_name: jaws
depends_on:
Expand Down

0 comments on commit fe17d29

Please sign in to comment.