File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
junit-jupiter-starter-ant Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# junit-jupiter-starter-ant
2
2
3
3
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.
5
5
6
6
This example project does not aim to demonstrate how to use the JUnit Jupiter APIs.
7
7
Original file line number Diff line number Diff line change 5
5
# Set constants.
6
6
#
7
7
junit_platform_version=' 1.13.2'
8
- ant_version=' 1.10.13 '
8
+ ant_version=' 1.10.15 '
9
9
ant_folder=" apache-ant-${ant_version} "
10
10
ant_archive=" ${ant_folder} -bin.tar.gz"
11
11
standalone_jar=" ${ant_folder} /lib/junit-platform-console-standalone-${junit_platform_version} .jar"
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<project name =" junit-jupiter-starter-ant" default =" build" basedir =" ." >
3
3
4
- <fail message =" Ant 1.10.4 + is required!" >
4
+ <fail message =" Ant 1.10.15 + is required!" >
5
5
<condition >
6
6
<not >
7
- <antversion atleast =" 1.10.4 " />
7
+ <antversion atleast =" 1.10.15 " />
8
8
</not >
9
9
</condition >
10
10
</fail >
You can’t perform that action at this time.
0 commit comments