Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the S3 source connector to use a later version of Kafka #383

Merged
Changes from all commits
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
22 changes: 11 additions & 11 deletions s3-source-connector/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins { id("aiven-apache-kafka-connectors-all.java-conventions") }
val amazonS3Version by extra("2.29.34")
val amazonSTSVersion by extra("2.29.34")
val s3mockVersion by extra("0.2.6")
val testKafkaVersion by extra("3.7.1")
val kafkaVersion by extra("3.3.0")

val integrationTest: SourceSet =
sourceSets.create("integrationTest") {
Expand Down Expand Up @@ -62,8 +62,8 @@ idea {
}

dependencies {
compileOnly(apache.kafka.connect.api)
compileOnly(apache.kafka.connect.runtime)
compileOnly("org.apache.kafka:connect-api:$kafkaVersion")
compileOnly("org.apache.kafka:connect-runtime:$kafkaVersion")

implementation(apache.commons.collection4)
implementation(project(":commons"))
Expand All @@ -81,9 +81,9 @@ dependencies {
testImplementation(compressionlibs.snappy)
testImplementation(compressionlibs.zstd.jni)

testImplementation(apache.kafka.connect.api)
testImplementation(apache.kafka.connect.runtime)
testImplementation(apache.kafka.connect.json)
testImplementation("org.apache.kafka:connect-api:$kafkaVersion")
testImplementation("org.apache.kafka:connect-runtime:$kafkaVersion")
testImplementation("org.apache.kafka:connect-json:$kafkaVersion")

testImplementation(testinglibs.junit.jupiter)
testImplementation(testinglibs.assertj.core)
Expand Down Expand Up @@ -184,11 +184,11 @@ dependencies {
exclude(group = "io.netty", module = "netty")
}

integrationTestImplementation("org.apache.kafka:connect-runtime:${testKafkaVersion}:test")
integrationTestImplementation("org.apache.kafka:connect-runtime:${testKafkaVersion}")
integrationTestImplementation("org.apache.kafka:kafka-clients:${testKafkaVersion}:test")
integrationTestImplementation("org.apache.kafka:kafka_2.13:${testKafkaVersion}:test")
integrationTestImplementation("org.apache.kafka:kafka_2.13:${testKafkaVersion}")
integrationTestImplementation("org.apache.kafka:connect-runtime:${kafkaVersion}:test")
integrationTestImplementation("org.apache.kafka:connect-runtime:${kafkaVersion}")
integrationTestImplementation("org.apache.kafka:kafka-clients:${kafkaVersion}:test")
integrationTestImplementation("org.apache.kafka:kafka_2.13:${kafkaVersion}:test")
integrationTestImplementation("org.apache.kafka:kafka_2.13:${kafkaVersion}")

// Make test utils from 'test' available in 'integration-test'
integrationTestImplementation(sourceSets["test"].output)
Expand Down
Loading