This is an automated email from the ASF dual-hosted git repository.
mbuenger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-antrun-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 8c7677f Update to parent 47 (#355)
8c7677f is described below
commit 8c7677f202e704bec70b108555e7f24e82563cf4
Author: Matthias Bünger <[email protected]>
AuthorDate: Tue Jan 27 20:46:27 2026 +0100
Update to parent 47 (#355)
---
pom.xml | 5 +++--
src/it/filesets-test/pom.xml | 2 +-
src/it/filesets-test/verify.bsh | 8 ++++----
3 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/pom.xml b/pom.xml
index e0d00a5..dc7d7da 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugins</artifactId>
- <version>46</version>
+ <version>47</version>
<relativePath />
</parent>
@@ -62,6 +62,7 @@ under the License.
<properties>
<mavenVersion>3.9.12</mavenVersion>
<version.xmlunit>2.11.0</version.xmlunit>
+ <version.ant>1.10.15</version.ant>
<project.build.outputTimestamp>2025-10-17T18:59:35Z</project.build.outputTimestamp>
</properties>
@@ -119,7 +120,7 @@ under the License.
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
- <version>1.10.15</version>
+ <version>${version.ant}</version>
</dependency>
<dependency>
diff --git a/src/it/filesets-test/pom.xml b/src/it/filesets-test/pom.xml
index 440cce2..bb3cfd3 100644
--- a/src/it/filesets-test/pom.xml
+++ b/src/it/filesets-test/pom.xml
@@ -116,7 +116,7 @@ under the License.
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
- <version>1.10.14</version>
+ <version>@version.ant@</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
diff --git a/src/it/filesets-test/verify.bsh b/src/it/filesets-test/verify.bsh
index 6149345..da000f0 100644
--- a/src/it/filesets-test/verify.bsh
+++ b/src/it/filesets-test/verify.bsh
@@ -27,8 +27,8 @@ import org.codehaus.plexus.util.*;
try
{
File depsDir = new File( basedir, "target/dependencies" );
- File antJar = new File( depsDir, "ant-1.10.14.jar" );
- File junitJar = new File( depsDir, "junit-jupiter-engine-5.14.1.jar" );
+ File antJar = new File( depsDir, "ant-1.10.15.jar" );
+ File junitJar = new File( depsDir, "junit-jupiter-engine-5.14.2.jar" );
if ( ! antJar.exists() || antJar.isDirectory() )
{
@@ -42,8 +42,8 @@ try
}
File deps2Dir = new File( basedir, "target/dependencies2" );
- antJar = new File( deps2Dir, "ant-1.10.14.jar" );
- junitJar = new File( deps2Dir, "junit-jupiter-api-5.14.1.jar" );
+ antJar = new File( deps2Dir, "ant-1.10.15.jar" );
+ junitJar = new File( deps2Dir, "junit-jupiter-api-5.14.2.jar" );
if ( ! antJar.exists() || antJar.isDirectory() )
{