This is an automated email from the ASF dual-hosted git repository.
mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new c461589dfdb [fix] Exclude commons-lang dep from bookkeeper (#24749)
c461589dfdb is described below
commit c461589dfdb2e6e417f91e1f0b453459eb17776a
Author: Matteo Merli <[email protected]>
AuthorDate: Tue Sep 16 12:09:22 2025 -0700
[fix] Exclude commons-lang dep from bookkeeper (#24749)
---
distribution/server/src/assemble/LICENSE.bin.txt | 1 -
pom.xml | 4 ++++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/distribution/server/src/assemble/LICENSE.bin.txt
b/distribution/server/src/assemble/LICENSE.bin.txt
index 46b62dde2b3..ec0d444daa1 100644
--- a/distribution/server/src/assemble/LICENSE.bin.txt
+++ b/distribution/server/src/assemble/LICENSE.bin.txt
@@ -286,7 +286,6 @@ The Apache Software License, Version 2.0
- commons-cli-commons-cli-1.9.0.jar
- commons-codec-commons-codec-1.18.0.jar
- commons-io-commons-io-2.19.0.jar
- - commons-lang-commons-lang-2.6.jar
- commons-logging-commons-logging-1.3.5.jar
- commons-collections-commons-collections-3.2.2.jar
- org.apache.commons-commons-collections4-4.4.jar
diff --git a/pom.xml b/pom.xml
index 447df93fdf2..926f42aadc2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1390,6 +1390,10 @@ flexible messaging model and an intuitive client
API.</description>
<groupId>org.apache.bookkeeper</groupId>
<artifactId>bookkeeper-server</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </exclusion>
</exclusions>
</dependency>