@@ -149,7 +149,7 @@ | |||||
<target name="init-ivy"> | <target name="init-ivy"> | ||||
<property name="ivy.version" value="2.4.0"/> | |||||
<property name="ivy.version" value="2.5.0"/> | |||||
<property name="ivy.jar.url" value="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.version}/ivy-${ivy.version}.jar"/> | <property name="ivy.jar.url" value="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.version}/ivy-${ivy.version}.jar"/> | ||||
<property name="ivy.jar.dir" value="${build.dir}/ivy"/> | <property name="ivy.jar.dir" value="${build.dir}/ivy"/> | ||||
<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar"/> | <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar"/> | ||||
@@ -33,10 +33,10 @@ netrexx.sha256=1f99f054e9b1e412d29823088f3fa7cfce90a7af25d907a60a6d7908a6b97ea4 | |||||
# Versions of different libraries. Please keep in alphabetical order, except | # Versions of different libraries. Please keep in alphabetical order, except | ||||
# when a specific dependency forces them to be out-of-order | # when a specific dependency forces them to be out-of-order | ||||
ivy.version=2.4.0 | |||||
ivy.version=2.5.0 | |||||
ant-antunit.version=1.4 | ant-antunit.version=1.4 | ||||
antlr.version=2.7.7 | antlr.version=2.7.7 | ||||
bcel.version=6.2 | |||||
bcel.version=6.4.1 | |||||
bsf.version=2.4.0 | bsf.version=2.4.0 | ||||
bsh.version=2.0b5 | bsh.version=2.0b5 | ||||
commons-net.version=3.6 | commons-net.version=3.6 | ||||
@@ -46,15 +46,15 @@ hamcrest-core.version=1.3 | |||||
hamcrest-library.version=${hamcrest-core.version} | hamcrest-library.version=${hamcrest-core.version} | ||||
jai-core.version=1.1.3 | jai-core.version=1.1.3 | ||||
jai-codec.version=1.1.3 | jai-codec.version=1.1.3 | ||||
jakarta.mail.version=1.6.4 | |||||
jakarta-regexp.version=1.4 | jakarta-regexp.version=1.4 | ||||
# Later versions of Tomcat provide a jspc task | # Later versions of Tomcat provide a jspc task | ||||
jasper-compiler.version=4.1.36 | jasper-compiler.version=4.1.36 | ||||
jasper-runtime.version=${jasper-compiler.version} | jasper-runtime.version=${jasper-compiler.version} | ||||
jakarta.mail.version=1.6.3 | |||||
jdepend.version=2.9.1 | jdepend.version=2.9.1 | ||||
jruby.version=1.6.8 | jruby.version=1.6.8 | ||||
junit.version=4.12 | |||||
rhino.version=1.7.10 | |||||
junit.version=4.13 | |||||
rhino.version=1.7.11 | |||||
junit-platform-launcher.version=1.2.0 | junit-platform-launcher.version=1.2.0 | ||||
# Only used for internal tests in Ant project | # Only used for internal tests in Ant project | ||||
junit-vintage-engine.version=5.2.0 | junit-vintage-engine.version=5.2.0 | ||||
@@ -362,7 +362,7 @@ start the application from that directory and these files will included into the | |||||
<h2 id="junit">Testing the class</h2> | <h2 id="junit">Testing the class</h2> | ||||
<p>In this step we will introduce the usage of the JUnit [3] test framework in combination with Ant. Because Ant has a | <p>In this step we will introduce the usage of the JUnit [3] test framework in combination with Ant. Because Ant has a | ||||
built-in JUnit 4.12 you could start directly using it. Write a test class | |||||
built-in JUnit 4.13 you could start directly using it. Write a test class | |||||
in <samp>src\oata\HelloWorldTest.java</samp>:</p> | in <samp>src\oata\HelloWorldTest.java</samp>:</p> | ||||
<pre> | <pre> | ||||
@@ -45,7 +45,7 @@ | |||||
<dependency> | <dependency> | ||||
<groupId>org.apache.bcel</groupId> | <groupId>org.apache.bcel</groupId> | ||||
<artifactId>bcel</artifactId> | <artifactId>bcel</artifactId> | ||||
<version>6.2</version> | |||||
<version>6.4.1</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
</dependencies> | </dependencies> | ||||
@@ -49,7 +49,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/m | |||||
See https://eclipse-ee4j.github.io/mail/ --> | See https://eclipse-ee4j.github.io/mail/ --> | ||||
<groupId>com.sun.mail</groupId> | <groupId>com.sun.mail</groupId> | ||||
<artifactId>jakarta.mail</artifactId> | <artifactId>jakarta.mail</artifactId> | ||||
<version>1.6.3</version> | |||||
<version>1.6.4</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
</dependencies> | </dependencies> | ||||
@@ -45,7 +45,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/m | |||||
<dependency> | <dependency> | ||||
<groupId>junit</groupId> | <groupId>junit</groupId> | ||||
<artifactId>junit</artifactId> | <artifactId>junit</artifactId> | ||||
<version>4.12</version> | |||||
<version>4.13</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
<dependency> | <dependency> | ||||
@@ -45,7 +45,7 @@ | |||||
<dependency> | <dependency> | ||||
<groupId>junit</groupId> | <groupId>junit</groupId> | ||||
<artifactId>junit</artifactId> | <artifactId>junit</artifactId> | ||||
<version>4.12</version> | |||||
<version>4.13</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
</dependencies> | </dependencies> | ||||
@@ -46,7 +46,7 @@ | |||||
<dependency> | <dependency> | ||||
<groupId>junit</groupId> | <groupId>junit</groupId> | ||||
<artifactId>junit</artifactId> | <artifactId>junit</artifactId> | ||||
<version>4.12</version> | |||||
<version>4.13</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
</dependencies> | </dependencies> | ||||
@@ -111,7 +111,7 @@ | |||||
<dependency> | <dependency> | ||||
<groupId>junit</groupId> | <groupId>junit</groupId> | ||||
<artifactId>junit</artifactId> | <artifactId>junit</artifactId> | ||||
<version>4.12</version> | |||||
<version>4.13</version> | |||||
<scope>test</scope> | <scope>test</scope> | ||||
</dependency> | </dependency> | ||||
<dependency> | <dependency> | ||||