Skip to content

Commit

Permalink
Use stable testcontainers
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Feb 20, 2025
1 parent 2223482 commit f4d14c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ allprojects {
mavenCentral()
maven(url = "https://packages.confluent.io/maven/")
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots")
maven(url = "https://jitpack.io")
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version=3.5.3-SNAPSHOT
org.gradle.caching=true
org.gradle.parallel=true
kafkaVersion=3.8.1
testContainersVersion=main-SNAPSHOT
testContainersVersion=1.20.5
confluentVersion=7.8.0
fluentKafkaVersion=3.0.0
junitVersion=5.11.4
Expand Down
12 changes: 2 additions & 10 deletions streams-bootstrap-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,8 @@ dependencies {

testFixturesApi(project(":streams-bootstrap-test"))
val testContainersVersion: String by project
testFixturesApi(
group = "com.github.testcontainers.testcontainers-java",
name = "junit-jupiter",
version = testContainersVersion
)
testFixturesApi(
group = "com.github.testcontainers.testcontainers-java",
name = "kafka",
version = testContainersVersion
)
testFixturesApi(group = "org.testcontainers", name = "junit-jupiter", version = testContainersVersion)
testFixturesApi(group = "org.testcontainers", name = "kafka", version = testContainersVersion)
testImplementation(group = "io.confluent", name = "kafka-streams-avro-serde", version = confluentVersion)
val log4jVersion: String by project
testImplementation(group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = log4jVersion)
Expand Down

0 comments on commit f4d14c9

Please sign in to comment.