This is an automated email from the ASF dual-hosted git repository. mmerli pushed a commit to branch branch-4.17 in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
commit 58c552146bc575e1749643c994f483ce43cc26ed Author: Matteo Merli <[email protected]> AuthorDate: Thu Aug 21 14:20:26 2025 -0700 Remove unused commons-lang dependency (#4654) * Remove unused commons-lang dependency * Removed from license files --- bookkeeper-dist/src/main/resources/LICENSE-all.bin.txt | 1 - bookkeeper-dist/src/main/resources/LICENSE-bkctl.bin.txt | 1 - bookkeeper-dist/src/main/resources/LICENSE-server.bin.txt | 1 - pom.xml | 6 ------ stream/distributedlog/common/pom.xml | 4 ---- 5 files changed, 13 deletions(-) diff --git a/bookkeeper-dist/src/main/resources/LICENSE-all.bin.txt b/bookkeeper-dist/src/main/resources/LICENSE-all.bin.txt index c8a53cc96b..ec86c8a644 100644 --- a/bookkeeper-dist/src/main/resources/LICENSE-all.bin.txt +++ b/bookkeeper-dist/src/main/resources/LICENSE-all.bin.txt @@ -216,7 +216,6 @@ Apache Software License, Version 2. - lib/commons-codec-commons-codec-1.18.0.jar [6] - lib/commons-collections-commons-collections-3.2.2.jar [62] - lib/commons-io-commons-io-2.19.0.jar [8] -- lib/commons-lang-commons-lang-2.6.jar [9] - lib/commons-logging-commons-logging-1.3.5.jar [10] - lib/io.netty-netty-buffer-4.1.121.Final.jar [11] - lib/io.netty-netty-codec-4.1.121.Final.jar [11] diff --git a/bookkeeper-dist/src/main/resources/LICENSE-bkctl.bin.txt b/bookkeeper-dist/src/main/resources/LICENSE-bkctl.bin.txt index fd5d1f85c7..076e5cef16 100644 --- a/bookkeeper-dist/src/main/resources/LICENSE-bkctl.bin.txt +++ b/bookkeeper-dist/src/main/resources/LICENSE-bkctl.bin.txt @@ -216,7 +216,6 @@ Apache Software License, Version 2. - lib/commons-codec-commons-codec-1.18.0.jar [6] - lib/commons-collections-commons-collections-3.2.2.jar [58] - lib/commons-io-commons-io-2.19.0.jar [8] -- lib/commons-lang-commons-lang-2.6.jar [9] - lib/commons-logging-commons-logging-1.3.5.jar [10] - lib/io.netty-netty-buffer-4.1.121.Final.jar [11] - lib/io.netty-netty-codec-4.1.121.Final.jar [11] diff --git a/bookkeeper-dist/src/main/resources/LICENSE-server.bin.txt b/bookkeeper-dist/src/main/resources/LICENSE-server.bin.txt index 84f2dd0621..accc315967 100644 --- a/bookkeeper-dist/src/main/resources/LICENSE-server.bin.txt +++ b/bookkeeper-dist/src/main/resources/LICENSE-server.bin.txt @@ -216,7 +216,6 @@ Apache Software License, Version 2. - lib/commons-codec-commons-codec-1.18.0.jar [6] - lib/commons-collections-commons-collections-3.2.2.jar [62] - lib/commons-io-commons-io-2.19.0.jar [8] -- lib/commons-lang-commons-lang-2.6.jar [9] - lib/commons-logging-commons-logging-1.3.5.jar [10] - lib/io.netty-netty-buffer-4.1.121.Final.jar [11] - lib/io.netty-netty-codec-4.1.121.Final.jar [11] diff --git a/pom.xml b/pom.xml index bedd4a3c25..782f21f565 100644 --- a/pom.xml +++ b/pom.xml @@ -124,7 +124,6 @@ <commons-configuration2.version>2.12.0</commons-configuration2.version> <commons-beanutils.version>1.11.0</commons-beanutils.version> <commons-compress.version>1.27.1</commons-compress.version> - <commons-lang.version>2.6</commons-lang.version> <commons-lang3.version>3.17.0</commons-lang3.version> <commons-logging.version>1.3.5</commons-logging.version> <commons-io.version>2.19.0</commons-io.version> @@ -288,11 +287,6 @@ <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> - <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - <version>${commons-lang.version}</version> - </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> diff --git a/stream/distributedlog/common/pom.xml b/stream/distributedlog/common/pom.xml index 83a3c1d297..b5b312ea57 100644 --- a/stream/distributedlog/common/pom.xml +++ b/stream/distributedlog/common/pom.xml @@ -61,10 +61,6 @@ <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> - <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId>
