This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-apache-parent.git
The following commit(s) were added to refs/heads/master by this push:
new a446ce5 Avoid - WARNING: Use of the three-letter time zone ID ... on
JDK 25 for RAT plugin
a446ce5 is described below
commit a446ce5f30d52fe1810d9bf9e81b1dfe9f59b6ad
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Mon Dec 8 19:09:38 2025 +0100
Avoid - WARNING: Use of the three-letter time zone ID ... on JDK 25 for RAT
plugin
---
pom.xml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/pom.xml b/pom.xml
index a4336df..bfc9a19 100644
--- a/pom.xml
+++ b/pom.xml
@@ -341,6 +341,16 @@ under the License.
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>${version.apache-rat-plugin}</version>
+ <dependencies>
+ <!-- avoid - WARNING: Use of the three-letter time zone ID ... on
JDK 25 -->
+ <!-- https://issues.apache.org/jira/browse/RAT-490 -->
+ <!-- TODO remove with next version of RAT -->
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>3.20.0</version>
+ </dependency>
+ </dependencies>
</plugin>
</plugins>
</pluginManagement>