Skip to content

Commit

Permalink
Upgrade to Kafka 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Mar 1, 2024
1 parent fbf067f commit d135bad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build-and-publish:
name: Java Gradle
uses: bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@1.41.0
uses: bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@1.42.0
with:
java-version: 17
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
java-gradle-release:
name: Java Gradle
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.41.0
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.42.0
with:
java-version: 17
release-type: "${{ inputs.release-type }}"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ subprojects {
dependencies {
val log4jVersion: String by project
"testImplementation"(group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = log4jVersion)
"testImplementation"(group = "org.assertj", name = "assertj-core", version = "3.25.1")
"testImplementation"(group = "org.assertj", name = "assertj-core", version = "3.25.3")
}
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version=2.11.6-SNAPSHOT
org.gradle.caching=true
org.gradle.parallel=true
junit5Version=5.10.1
junit5Version=5.10.2
junit4Version=4.13.2
confluentVersion=7.5.1
kafkaVersion=3.5.2
log4jVersion=2.22.1
confluentVersion=7.6.0
kafkaVersion=3.6.1
log4jVersion=2.23.0
org.gradle.jvmargs=-Xmx2048m
2 changes: 1 addition & 1 deletion schema-registry-mock/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
"api"(group = "io.confluent", name = "kafka-schema-registry-client", version = confluentVersion)
"api"(group = "io.confluent", name = "kafka-streams-avro-serde", version = confluentVersion)

implementation(group = "org.wiremock", name = "wiremock", version = "3.3.1")
implementation(group = "org.wiremock", name = "wiremock", version = "3.4.2")

val junit5Version: String by project
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = junit5Version)
Expand Down

0 comments on commit d135bad

Please sign in to comment.