bump Ant and JUnit dependencies
This commit is contained in:
parent
0ed7a52615
commit
c20a3fea1d
|
|
@ -3,3 +3,4 @@
|
|||
/ivy/
|
||||
/lib/
|
||||
/target/
|
||||
distribution
|
||||
|
|
|
|||
|
|
@ -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
2
common
|
|
@ -1 +1 @@
|
|||
Subproject commit ce5a8232fdb6e362c736fbdb0ada0c1ea15a7d64
|
||||
Subproject commit 4bc0835ac521a9b64a623a94225cfdbcce708193
|
||||
14
ivy.xml
14
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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue