Skip to content

Commit 3b80855

Browse files
authored
MINOR: version updates for build and test dependencies (#21651)
details: - checkstyle: 12.2.0 -->> 12.3.1 - jgit: 7.5.0 -->> 7.6.0 - junit: 5.13.1 -->> 5.14.3 - junitPlatform: 1.13.1 -->> 1.14.3 - scalafmt: 3.10.2 -->> 3.10.3 - scoverage: 2.5.1 -->> 2.5.2 - mockOAuth2Server: 2.2.1 -->> 2.3.0 - swagger: 2.2.39 -->> 2.2.48 - zinc: 1.11.0 -->> 1.12.0 - gradle plugins: - gradle-versions-plugin: 0.53.0 -->> 0.54.0 - dependencycheck: 12.1.8 -->> 12.2.1 - spotbugs: 6.4.4 -->> 6.5.1 - shadow: 9.3.1 -->> 9.4.1 Some notable release notes: - JGit: https://projects.eclipse.org/projects/technology.jgit/releases/7.6.0 - JUnit: - https://docs.junit.org/5.14.3/release-notes.html - https://github.com/junit-team/junit-framework/wiki/Upgrading-to-JUnit-5.14 - mockOAuth2Server: - https://github.com/navikt/mock-oauth2-server/releases/tag/2.3.0 - navikt/mock-oauth2-server@2.2.1...2.3.0 - Zinc: https://github.com/sbt/zinc/releases/tag/v1.12.0 - Gradle Shadow plugin: https://gradleup.com/shadow/changes/#941-2026-03-27 Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
1 parent 8ae35c0 commit 3b80855

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

LICENSE-binary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ License Version 2.0:
252252
- scala-reflect-2.13.18
253253
- snappy-java-1.1.10.7
254254
- snakeyaml-2.5
255-
- swagger-annotations-2.2.39
255+
- swagger-annotations-2.2.48
256256

257257
===============================================================================
258258
This product bundles various third-party components under other open source

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ buildscript {
2929
}
3030

3131
plugins {
32-
id 'com.github.ben-manes.versions' version '0.53.0'
32+
id 'com.github.ben-manes.versions' version '0.54.0'
3333
id 'idea'
3434
id 'jacoco'
3535
id 'java-library'
36-
id 'org.owasp.dependencycheck' version '12.1.8'
36+
id 'org.owasp.dependencycheck' version '12.2.1'
3737
id 'org.nosphere.apache.rat' version "0.8.1"
3838
id "io.swagger.core.v3.swagger-gradle-plugin" version "${swaggerVersion}"
3939

40-
id "com.github.spotbugs" version '6.4.4' apply false
40+
id "com.github.spotbugs" version '6.5.1' apply false
4141
id 'org.scoverage' version '8.1' apply false
42-
id 'com.gradleup.shadow' version '9.3.1' apply false
42+
id 'com.gradleup.shadow' version '9.4.1' apply false
4343
id 'com.diffplug.spotless' version "8.4.0"
4444
}
4545

checkstyle/.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
version = 3.10.2
15+
version = 3.10.3
1616
runner.dialect = scala213
1717
docstrings.style = Asterisk
1818
docstrings.wrap = false

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ group=org.apache.kafka
1717
version=4.4.0-SNAPSHOT
1818
scalaVersion=2.13.18
1919
# Adding swaggerVersion in gradle.properties to have a single version in place for swagger
20-
swaggerVersion=2.2.39
20+
swaggerVersion=2.2.48
2121
task=build
2222
org.gradle.jvmargs=-Xmx4g -Xss4m -XX:+UseParallelGC
2323
org.gradle.parallel=true

gradle/dependencies.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ versions += [
5656
bcpkix: "1.83",
5757
caffeine: "3.2.0",
5858
bndlib: "7.1.0",
59-
checkstyle: project.hasProperty('checkstyleVersion') ? checkstyleVersion : "12.2.0",
59+
checkstyle: project.hasProperty('checkstyleVersion') ? checkstyleVersion : "12.3.1",
6060
commonsValidator: "1.10.1",
6161
classgraph: "4.8.179",
6262
gradle: "9.4.1",
@@ -70,7 +70,7 @@ versions += [
7070
// (e.g. Logger.atDebug()) in production code, as Kafka uses SLF4J 1.7.x.
7171
jetty: "12.0.34",
7272
jersey: "3.1.10",
73-
jgit: "7.5.0.202512021534-r",
73+
jgit: "7.6.0.202603022253-r",
7474
jline: "3.30.4",
7575
jmh: "1.37",
7676
hamcrest: "3.0",
@@ -82,7 +82,7 @@ versions += [
8282
jfreechart: "1.5.6",
8383
jopt: "5.0.4",
8484
jose4j: "0.9.6",
85-
junit: "5.13.1",
85+
junit: "5.14.3",
8686
jqwik: "1.9.2",
8787
kafka_0110: "0.11.0.3",
8888
kafka_10: "1.0.2",
@@ -125,19 +125,19 @@ versions += [
125125
// When updating the scalafmt version please also update the version field in checkstyle/.scalafmt.conf. scalafmt now
126126
// has the version field as mandatory in its configuration, see
127127
// https://github.com/scalameta/scalafmt/releases/tag/v3.1.0.
128-
scalafmt: "3.10.2",
129-
scoverage: "2.5.1",
128+
scalafmt: "3.10.3",
129+
scoverage: "2.5.2",
130130
slf4j: "1.7.36",
131131
snappy: "1.1.10.7",
132132
spotbugs: "4.9.8",
133133
testcontainers: "1.20.2",
134134
testcontainersKeycloak: "3.5.1",
135-
mockOAuth2Server: "2.2.1",
136-
zinc: "1.11.0",
135+
mockOAuth2Server: "2.3.0",
136+
zinc: "1.12.0",
137137
// When updating the zstd version, please do as well in docker/native/native-image-configs/resource-config.json
138138
// Also make sure the compression levels in org.apache.kafka.common.record.CompressionType are still valid
139139
zstd: "1.5.6-10",
140-
junitPlatform: "1.13.1",
140+
junitPlatform: "1.14.3",
141141
hdrHistogram: "2.2.2",
142142
hash4j: "0.22.0"
143143
]

0 commit comments

Comments
 (0)