bump Ant and JUnit dependencies

This commit is contained in:
Stefan Bodewig 2026-06-04 08:35:24 +02:00
parent 0ed7a52615
commit c20a3fea1d
No known key found for this signature in database
GPG Key ID: 23738DFD7C40DE43
5 changed files with 15 additions and 11 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
/ivy/
/lib/
/target/
distribution

View File

@ -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

2
common

@ -1 +1 @@
Subproject commit ce5a8232fdb6e362c736fbdb0ada0c1ea15a7d64
Subproject commit 4bc0835ac521a9b64a623a94225cfdbcce708193

14
ivy.xml
View File

@ -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>

View File

@ -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>