This is an automated email from the ASF dual-hosted git repository.

lprimak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shiro.git


The following commit(s) were added to refs/heads/main by this push:
     new 2167c2fe7 chore: update dependency in RAT plugin to remove warnings on 
JDK 25
2167c2fe7 is described below

commit 2167c2fe7c19cfd5dc694c5c5e5f9cb24df71537
Author: lprimak <[email protected]>
AuthorDate: Mon Nov 17 12:20:17 2025 -0600

    chore: update dependency in RAT plugin to remove warnings on JDK 25
---
 pom.xml | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 4cd754fed..c4eb85e25 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,7 +91,7 @@
         <commons.cli.version>1.9.0</commons.cli.version>
         <commons.collection.version>3.2.2</commons.collection.version>
         <commons.configuration2.version>2.12.0</commons.configuration2.version>
-        <commons.lang3.version>3.17.0</commons.lang3.version>
+        <commons.lang3.version>3.20.0</commons.lang3.version>
         <commons.logging.version>1.3.5</commons.logging.version>
         <commons.text.version>1.8</commons.text.version>
         <!-- Don't change this version without also changing the shiro-ehcache 
and shiro-features
@@ -368,6 +368,14 @@
                             <exclude>.jenkins_maven_args</exclude>
                         </excludes>
                     </configuration>
+<!--                This can be removed when RAT plugin is updated to use 
commons-lang3 3.20.0 or above -->
+                    <dependencies>
+                        <dependency>
+                            <groupId>org.apache.commons</groupId>
+                            <artifactId>commons-lang3</artifactId>
+                            <version>${commons.lang3.version}</version>
+                        </dependency>
+                    </dependencies>
                 </plugin>
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
@@ -1127,6 +1135,11 @@
                 <artifactId>commons-cli</artifactId>
                 <version>${commons.cli.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.apache.commons</groupId>
+                <artifactId>commons-lang3</artifactId>
+                <version>${commons.lang3.version}</version>
+            </dependency>
             <dependency>
                 <groupId>javax.annotation</groupId>
                 <artifactId>javax.annotation-api</artifactId>

Reply via email to