Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ targetCompatibility = JavaVersion.VERSION_11
ext {
jacksonVersion = "2.18.2"
kafkaVersion = "2.0.1"
log4jVersion = "2.24.3"
testcontainersVersion = "1.20.4"
debeziumVersion = "1.3.0.Final"
}
Expand Down Expand Up @@ -103,9 +104,9 @@ dependencies {
testImplementation "io.debezium:debezium-api:$debeziumVersion"
testImplementation "org.assertj:assertj-core:3.26.3"

testRuntimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:2.23.1"
testRuntimeOnly "org.apache.logging.log4j:log4j-api:2.23.1"
testRuntimeOnly "org.apache.logging.log4j:log4j-core:2.23.1"
testRuntimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion"
testRuntimeOnly "org.apache.logging.log4j:log4j-api:$log4jVersion"
testRuntimeOnly "org.apache.logging.log4j:log4j-core:$log4jVersion"

integrationTestImplementation "org.apache.kafka:connect-api:$kafkaVersion"
integrationTestImplementation("org.apache.kafka:connect-runtime:$kafkaVersion") {
Expand Down