Skip to content

Commit 701bd4a

Browse files
committed
Update Ant version
1 parent 84c353b commit 701bd4a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

junit-jupiter-starter-ant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# junit-jupiter-starter-ant
22

33
The `junit-jupiter-starter-ant` project demonstrates how to execute JUnit Jupiter
4-
tests using [Apache Ant](https://ant.apache.org/) 1.10.4 or higher.
4+
tests using [Apache Ant](https://ant.apache.org/) 1.10.15 or higher.
55

66
This example project does not aim to demonstrate how to use the JUnit Jupiter APIs.
77

junit-jupiter-starter-ant/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
# Set constants.
66
#
77
junit_platform_version='1.13.2'
8-
ant_version='1.10.13'
8+
ant_version='1.10.15'
99
ant_folder="apache-ant-${ant_version}"
1010
ant_archive="${ant_folder}-bin.tar.gz"
1111
standalone_jar="${ant_folder}/lib/junit-platform-console-standalone-${junit_platform_version}.jar"

junit-jupiter-starter-ant/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project name="junit-jupiter-starter-ant" default="build" basedir=".">
33

4-
<fail message="Ant 1.10.4+ is required!">
4+
<fail message="Ant 1.10.15+ is required!">
55
<condition>
66
<not>
7-
<antversion atleast="1.10.4"/>
7+
<antversion atleast="1.10.15"/>
88
</not>
99
</condition>
1010
</fail>

0 commit comments

Comments
 (0)