Skip to content

Commit 927fc75

Browse files
committed
Update third-party libraries
1 parent 6a06674 commit 927fc75

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

check.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149

150150

151151
<target name="init-ivy">
152-
<property name="ivy.version" value="2.4.0"/>
152+
<property name="ivy.version" value="2.5.0"/>
153153
<property name="ivy.jar.url" value="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.version}/ivy-${ivy.version}.jar"/>
154154
<property name="ivy.jar.dir" value="${build.dir}/ivy"/>
155155
<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar"/>

lib/libraries.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ netrexx.sha256=1f99f054e9b1e412d29823088f3fa7cfce90a7af25d907a60a6d7908a6b97ea4
3333

3434
# Versions of different libraries. Please keep in alphabetical order, except
3535
# when a specific dependency forces them to be out-of-order
36-
ivy.version=2.4.0
36+
ivy.version=2.5.0
3737
ant-antunit.version=1.4
3838
antlr.version=2.7.7
39-
bcel.version=6.2
39+
bcel.version=6.4.1
4040
bsf.version=2.4.0
4141
bsh.version=2.0b5
4242
commons-net.version=3.6
@@ -46,15 +46,15 @@ hamcrest-core.version=1.3
4646
hamcrest-library.version=${hamcrest-core.version}
4747
jai-core.version=1.1.3
4848
jai-codec.version=1.1.3
49+
jakarta.mail.version=1.6.4
4950
jakarta-regexp.version=1.4
5051
# Later versions of Tomcat provide a jspc task
5152
jasper-compiler.version=4.1.36
5253
jasper-runtime.version=${jasper-compiler.version}
53-
jakarta.mail.version=1.6.3
5454
jdepend.version=2.9.1
5555
jruby.version=1.6.8
56-
junit.version=4.12
57-
rhino.version=1.7.10
56+
junit.version=4.13
57+
rhino.version=1.7.11
5858
junit-platform-launcher.version=1.2.0
5959
# Only used for internal tests in Ant project
6060
junit-vintage-engine.version=5.2.0
File renamed without changes.

manual/tutorial-HelloWorldWithAnt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ <h2 id="config-files">Configuration files</h2>
362362

363363
<h2 id="junit">Testing the class</h2>
364364
<p>In this step we will introduce the usage of the JUnit [3] test framework in combination with Ant. Because Ant has a
365-
built-in JUnit 4.12 you could start directly using it. Write a test class
365+
built-in JUnit 4.13 you could start directly using it. Write a test class
366366
in <samp>src\oata\HelloWorldTest.java</samp>:</p>
367367

368368
<pre>

src/etc/poms/ant-apache-bcel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>org.apache.bcel</groupId>
4747
<artifactId>bcel</artifactId>
48-
<version>6.2</version>
48+
<version>6.4.1</version>
4949
<scope>compile</scope>
5050
</dependency>
5151
</dependencies>

src/etc/poms/ant-javamail/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/m
4949
See https://eclipse-ee4j.github.io/mail/ -->
5050
<groupId>com.sun.mail</groupId>
5151
<artifactId>jakarta.mail</artifactId>
52-
<version>1.6.3</version>
52+
<version>1.6.4</version>
5353
<scope>compile</scope>
5454
</dependency>
5555
</dependencies>

src/etc/poms/ant-junit/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/m
4545
<dependency>
4646
<groupId>junit</groupId>
4747
<artifactId>junit</artifactId>
48-
<version>4.12</version>
48+
<version>4.13</version>
4949
<scope>compile</scope>
5050
</dependency>
5151
<dependency>

src/etc/poms/ant-junit4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>junit</groupId>
4747
<artifactId>junit</artifactId>
48-
<version>4.12</version>
48+
<version>4.13</version>
4949
<scope>compile</scope>
5050
</dependency>
5151
</dependencies>

src/etc/poms/ant-testutil/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>junit</groupId>
4848
<artifactId>junit</artifactId>
49-
<version>4.12</version>
49+
<version>4.13</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
</dependencies>

src/etc/poms/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<dependency>
112112
<groupId>junit</groupId>
113113
<artifactId>junit</artifactId>
114-
<version>4.12</version>
114+
<version>4.13</version>
115115
<scope>test</scope>
116116
</dependency>
117117
<dependency>

0 commit comments

Comments
 (0)