This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jelly.git
commit d51dcf4e710eed90c94db1120ac8583429e8a24c Author: Gary Gregory <[email protected]> AuthorDate: Tue Sep 8 10:55:14 2026 -0400 Refactor Commons Lang 3 dependency management. --- jelly-tags/swing/pom.xml | 1 - jelly-tags/util/pom.xml | 1 - pom.xml | 10 +++++----- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/jelly-tags/swing/pom.xml b/jelly-tags/swing/pom.xml index dd871e5b..5d1b0b0c 100644 --- a/jelly-tags/swing/pom.xml +++ b/jelly-tags/swing/pom.xml @@ -34,7 +34,6 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> - <version>3.20.0</version> </dependency> <!-- END for compilation --> diff --git a/jelly-tags/util/pom.xml b/jelly-tags/util/pom.xml index 5114714c..612d9382 100644 --- a/jelly-tags/util/pom.xml +++ b/jelly-tags/util/pom.xml @@ -36,7 +36,6 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> - <version>3.20.0</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> diff --git a/pom.xml b/pom.xml index c097a0c0..d4e7b74b 100644 --- a/pom.xml +++ b/pom.xml @@ -160,6 +160,11 @@ <artifactId>commons-secure-xml</artifactId> <version>1.0.0</version> </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <version>3.20.0</version> + </dependency> </dependencies> </dependencyManagement> <dependencies> @@ -173,11 +178,6 @@ <artifactId>commons-cli</artifactId> <version>1.11.0</version> </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-lang3</artifactId> - <version>3.20.0</version> - </dependency> <dependency> <groupId>commons-discovery</groupId> <artifactId>commons-discovery</artifactId>
