This is an automated email from the ASF dual-hosted git repository.
Claudenw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
The following commit(s) were added to refs/heads/master by this push:
new 1a2d36a9 RAT-527: Bump org.codehaus.groovy:groovy-all from 2.4.21 to
3.0.25 (#656)
1a2d36a9 is described below
commit 1a2d36a915e0dff8f94c7cfce6aa91a62a7e0416
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon May 11 13:57:39 2026 +0200
RAT-527: Bump org.codehaus.groovy:groovy-all from 2.4.21 to 3.0.25 (#656)
* Bump org.codehaus.groovy:groovy-all from 2.4.21 to 3.0.25
Bumps [org.codehaus.groovy:groovy-all](https://github.com/apache/groovy)
from 2.4.21 to 3.0.25.
- [Commits](https://github.com/apache/groovy/commits)
---
updated-dependencies:
- dependency-name: org.codehaus.groovy:groovy-all
dependency-version: 3.0.25
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
* RAT-527: Migrate to ASF groovy
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: P. Ottlinger <[email protected]>
---
apache-rat-core/pom.xml | 5 ++---
pom.xml | 7 +++----
src/changes/changes.xml | 3 +++
3 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/apache-rat-core/pom.xml b/apache-rat-core/pom.xml
index b60c6cc8..7bc31a44 100644
--- a/apache-rat-core/pom.xml
+++ b/apache-rat-core/pom.xml
@@ -251,9 +251,8 @@
</dependency>
<dependency>
<!-- this dependency is actually used by integration testing code -->
- <!-- TODO RAT-527: migrate to newer version under ASF umbrella: 5.x
including itests -->
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
+ <groupId>org.apache.groovy</groupId>
+ <artifactId>groovy</artifactId>
<scope>test</scope>
</dependency>
<dependency>
diff --git a/pom.xml b/pom.xml
index 22f80797..decfeff3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -247,10 +247,9 @@ agnostic home for software distribution comprehension and
audit tools.
<version>${velocity.tools.version}</version>
</dependency>
<dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
- <!-- TODO RAT-527: migrate to newer version under ASF umbrella: 5.x
including itests in RAT's core -->
- <version>2.4.21</version>
+ <groupId>org.apache.groovy</groupId>
+ <artifactId>groovy</artifactId>
+ <version>5.0.6</version>
<scope>test</scope>
</dependency>
<dependency>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b115353d..7c3f891a 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -68,6 +68,9 @@ in order to be properly linked in site reports.
</release>
-->
<release version="1.0.0-SNAPSHOT" date="xxxx-yy-zz" description="Current
SNAPSHOT - release to be done">
+ <action issue="RAT-527" type="add" dev="pottlinger">
+ Migrate from old groovy-all to current ASF groovy in integration tests.
+ </action>
<action issue="RAT-551" type="add" dev="claudenw">
Replace NoCloseOutputStream with Apache Commons
CloseShieldOutputStream.
</action>