This is an automated email from the ASF dual-hosted git repository.
chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new d4e7b9bd70a MINOR: Bump maven artifact lib and remove commonsLang
(#21115)
d4e7b9bd70a is described below
commit d4e7b9bd70a8e4d44868193ecf2675c6a0c74338
Author: Maros Orsak <[email protected]>
AuthorDate: Thu Dec 11 07:55:32 2025 +0100
MINOR: Bump maven artifact lib and remove commonsLang (#21115)
This PR bumps Maven artefact and commons-lang libs.
Reviewers: Chia-Ping Tsai <[email protected]>
---
LICENSE-binary | 5 ++---
NOTICE-binary | 17 -----------------
build.gradle | 3 +--
gradle/dependencies.gradle | 4 +---
4 files changed, 4 insertions(+), 25 deletions(-)
diff --git a/LICENSE-binary b/LICENSE-binary
index fd1c2dde27a..caed04086a5 100644
--- a/LICENSE-binary
+++ b/LICENSE-binary
@@ -209,7 +209,6 @@ License Version 2.0:
- commons-beanutils-1.11.0
- commons-collections-3.2.2
- commons-digester-2.1
-- commons-lang3-3.18.0
- commons-logging-1.3.5
- commons-validator-1.10.1
- hash4j-0.22.0
@@ -243,10 +242,10 @@ License Version 2.0:
- log4j-slf4j-impl-2.25.1
- log4j-1.2-api-2.25.1
- lz4-java-1.10.1
-- maven-artifact-3.9.6
+- maven-artifact-3.9.11
- metrics-core-2.2.0
- opentelemetry-proto-1.3.2-alpha
-- plexus-utils-3.5.1
+- plexus-utils-3.6.0
- rocksdbjni-10.1.3
- scala-library-2.13.17
- scala-logging_2.13-3.9.6
diff --git a/NOTICE-binary b/NOTICE-binary
index 00b25d5d3f3..4032f6ff00f 100644
--- a/NOTICE-binary
+++ b/NOTICE-binary
@@ -100,14 +100,6 @@ Copyright 2002-2021 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (https://www.apache.org/).
-
-Apache Commons Lang
-Copyright 2001-2018 The Apache Software Foundation
-
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-
# Jackson JSON processor
Jackson is a high-performance, Free/Open Source JSON processing library.
@@ -794,15 +786,6 @@ the HTTP/2 HPACK algorithm written by Tatsuhiro Tsujikawa.
It can be obtained at
* HOMEPAGE:
* https://github.com/nghttp2/nghttp2/
-This product contains a modified portion of 'Apache Commons Lang', a Java
library
-provides utilities for the java.lang API, which can be obtained at:
-
- * LICENSE:
- * license/LICENSE.commons-lang.txt (Apache License 2.0)
- * HOMEPAGE:
- * https://commons.apache.org/proper/commons-lang/
-
-
This product contains the Maven wrapper scripts from 'Maven Wrapper', that
provides an easy way to ensure a user has everything necessary to run the Maven
build.
* LICENSE:
diff --git a/build.gradle b/build.gradle
index 6a83f8cbf70..fdde3668d61 100644
--- a/build.gradle
+++ b/build.gradle
@@ -197,8 +197,7 @@ allprojects {
// ensure we have a single version in the classpath despite
transitive dependencies
libs.scalaLibrary,
libs.scalaReflect,
- libs.jacksonAnnotations,
- libs.commonsLang
+ libs.jacksonAnnotations
)
}
}
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index 7d3eeaec9e3..d93f3f2d867 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -57,7 +57,6 @@ versions += [
caffeine: "3.2.0",
bndlib: "7.1.0",
checkstyle: project.hasProperty('checkstyleVersion') ? checkstyleVersion :
"10.20.2",
- commonsLang: "3.18.0",
commonsValidator: "1.10.1",
classgraph: "4.8.179",
gradle: "9.2.1",
@@ -111,7 +110,7 @@ versions += [
//
https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/common/record/CompressionType.java#L73-L74
//
https://github.com/yawkat/lz4-java/blob/main/src/java/net/jpountz/lz4/LZ4Constants.java#L23-L24
lz4: "1.10.1",
- mavenArtifact: "3.9.6",
+ mavenArtifact: "3.9.11",
metrics: "2.2.0",
mockito: "5.20.0",
opentelemetryProto: "1.3.2-alpha",
@@ -153,7 +152,6 @@ libs += [
bndlib:"biz.aQute.bnd:biz.aQute.bndlib:$versions.bndlib",
caffeine: "com.github.ben-manes.caffeine:caffeine:$versions.caffeine",
classgraph: "io.github.classgraph:classgraph:$versions.classgraph",
- commonsLang: "org.apache.commons:commons-lang3:$versions.commonsLang",
commonsValidator:
"commons-validator:commons-validator:$versions.commonsValidator",
jacksonAnnotations:
"com.fasterxml.jackson.core:jackson-annotations:$versions.jacksonAnnotations",
jacksonDatabind:
"com.fasterxml.jackson.core:jackson-databind:$versions.jackson",