Browse Source

Merge branch '1.9.x'

master
Stefan Bodewig 4 years ago
parent
commit
81aee9ec90
6 changed files with 6 additions and 6 deletions
  1. +1
    -1
      lib/libraries.properties
  2. +1
    -1
      manual/tutorial-HelloWorldWithAnt.html
  3. +1
    -1
      src/etc/poms/ant-junit/pom.xml
  4. +1
    -1
      src/etc/poms/ant-junit4/pom.xml
  5. +1
    -1
      src/etc/poms/ant-testutil/pom.xml
  6. +1
    -1
      src/etc/poms/pom.xml

+ 1
- 1
lib/libraries.properties View File

@@ -55,7 +55,7 @@ jasper-compiler.version=4.1.36
jasper-runtime.version=${jasper-compiler.version}
jdepend.version=2.9.1
jruby.version=1.6.8
junit.version=4.13
junit.version=4.13.1
rhino.version=1.7.11
junit-platform-launcher.version=1.2.0
# Only used for internal tests in Ant project


+ 1
- 1
manual/tutorial-HelloWorldWithAnt.html View File

@@ -361,7 +361,7 @@ start the application from that directory and these files will included into the

<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
built-in JUnit 4.13 you could start directly using it. Write a test class
built-in JUnit 4.13.1 you could start directly using it. Write a test class
in <samp>src\oata\HelloWorldTest.java</samp>:</p>

<pre>


+ 1
- 1
src/etc/poms/ant-junit/pom.xml View File

@@ -45,7 +45,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/m
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<version>4.13.1</version>
<scope>compile</scope>
</dependency>
<dependency>


+ 1
- 1
src/etc/poms/ant-junit4/pom.xml View File

@@ -45,7 +45,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<version>4.13.1</version>
<scope>compile</scope>
</dependency>
</dependencies>


+ 1
- 1
src/etc/poms/ant-testutil/pom.xml View File

@@ -46,7 +46,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<version>4.13.1</version>
<scope>compile</scope>
</dependency>
</dependencies>


+ 1
- 1
src/etc/poms/pom.xml View File

@@ -111,7 +111,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>


Loading…
Cancel
Save