From ebea98669691aaddd11ff7f7c562cc62bed16456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20B=C3=BCnger?= Date: Tue, 27 Jan 2026 16:46:18 +0100 Subject: [PATCH] Update to parent 47 --- 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. org.apache.maven.plugins maven-plugins - 46 + 47 @@ -62,6 +62,7 @@ under the License. 3.9.12 2.11.0 + 1.10.15 2025-10-17T18:59:35Z @@ -119,7 +120,7 @@ under the License. org.apache.ant ant - 1.10.15 + ${version.ant} 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. org.apache.ant ant - 1.10.14 + @version.ant@ org.junit.jupiter 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() ) {