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

asf-gitbox-commits pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant-antlibs-antunit.git

commit c20a3fea1d905c0a0e4c97c444f35adef7fab9f0
Author: Stefan Bodewig <[email protected]>
AuthorDate: Thu Jun 4 08:35:24 2026 +0200

    bump Ant and JUnit dependencies
---
 .gitignore           |  1 +
 changes.xml          |  1 +
 common               |  2 +-
 ivy.xml              | 14 ++++++++------
 project-template.pom |  8 ++++----
 5 files changed, 15 insertions(+), 11 deletions(-)

diff --git a/.gitignore b/.gitignore
index 4a4a0ea..d6b2e1a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
 /ivy/
 /lib/
 /target/
+distribution
diff --git a/changes.xml b/changes.xml
index 56194b0..5db5449 100644
--- a/changes.xml
+++ b/changes.xml
@@ -51,6 +51,7 @@
       assertReferenceIsNotSet assertions.
     </action>
   </release>
+
   <release version="1.4.1" date="2021-07-07">
     <action type="fix" issue="65315">
       We didn't follow our own best practice and hard-coded the
diff --git a/common b/common
index ce5a823..4bc0835 160000
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit ce5a8232fdb6e362c736fbdb0ada0c1ea15a7d64
+Subproject commit 4bc0835ac521a9b64a623a94225cfdbcce708193
diff --git a/ivy.xml b/ivy.xml
index 549d748..8d0dc76 100644
--- a/ivy.xml
+++ b/ivy.xml
@@ -34,9 +34,10 @@
     </description>
   </info>
   <configurations>
-               <conf name="default" description="full antlib with all 
dependencies"/>
-        <conf name="provided" description="Ant must be present at runtime"/>
-               <conf name="test" description="dependencies used for JUnit 
tests of the antlib" transitive="false" visibility="private"/>
+    <conf name="default" description="full antlib with all dependencies"/>
+    <conf name="provided" description="Ant must be present at runtime"/>
+    <conf name="test" description="dependencies used for JUnit tests of the 
antlib" transitive="false" visibility="private"/>
+    <conf name="build" description="dependencies used during the build 
process" visibility="private"/>
   </configurations>
   <publications xmlns:e="urn:ant.apache.org:ivy-extras">
     <artifact name="${artifact.name}" type="pom" ext="pom"/>
@@ -57,8 +58,9 @@
               e:classifier="ivy"/>
   </publications>
   <dependencies>
-    <dependency org="junit" name="junit" rev="4.12" conf="default"/>
-    <dependency org="org.apache.ant" name="ant" rev="1.8.1" 
conf="provided->default"/>
-    <dependency org="org.apache.ant" name="ant-testutil" rev="1.8.1" 
conf="test->default"/>
+    <dependency org="junit" name="junit" rev="4.13.2" conf="default"/>
+    <dependency org="org.apache.ant" name="ant" rev="1.10.13" 
conf="provided->default"/>
+    <dependency org="org.apache.ant" name="ant-testutil" rev="1.10.13" 
conf="test->default"/>
+    <dependency org="org.apache.ant" name="ant-cyclonedx" rev="0.1" 
conf="build->default"/>
   </dependencies>
 </ivy-module>
diff --git a/project-template.pom b/project-template.pom
index 42c56c6..f9b8754 100644
--- a/project-template.pom
+++ b/project-template.pom
@@ -75,7 +75,7 @@
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.8.1</version>
+      <version>1.10.13</version>
       <scope>compile</scope>
       <exclusions>
        <exclusion>
@@ -87,20 +87,20 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.12</version>
+      <version>4.13.2</version>
       <scope>compile</scope>
       <optional>true</optional>
     </dependency>
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant-launcher</artifactId>
-      <version>1.8.1</version>
+      <version>1.10.13</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant-testutil</artifactId>
-      <version>1.8.1</version>
+      <version>1.10.13</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

Reply via email to