summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorJaikiran Pai <jaikiran@apache.org>2018-08-15 10:26:29 +0530
committerJaikiran Pai <jaikiran@apache.org>2018-08-15 10:26:29 +0530
commit0ed314833651436d7662858d070e5d71d81bb0c3 (patch)
tree0ea6e3c45cad113dd4d7503fff1ee9c82d936d19 /build.xml
parente648224f5374e7dc1b2d7bc402ed2758d9bd23f1 (diff)
downloadant-0ed314833651436d7662858d070e5d71d81bb0c3.tar.gz
move the junitlauncher jupiter sample test to the org/example directory, just like the vintage engine ones
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml14
1 files changed, 10 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index c148105d0..9945d71d1 100644
--- a/build.xml
+++ b/build.xml
@@ -213,13 +213,19 @@
</selector>
<selector id="needs.junit.engine.vintage">
- <!-- we need JUnit vintage engine only in tests where we test the junitlauncher task -->
- <filename name="${src.junit}/org/apache/tools/ant/taskdefs/optional/junitlauncher/**/*"/>
+ <or>
+ <!-- we need JUnit vintage engine only in tests where we test the junitlauncher task -->
+ <filename name="${optional.package}/junitlauncher/**/*"/>
+ <filename name="org/example/junitlauncher/vintage/**/*"/>
+ </or>
</selector>
<selector id="needs.junit.engine.jupiter">
- <!-- we need JUnit jupiter engine only in tests where we test the junitlauncher task -->
- <filename name="${src.junit}/org/apache/tools/ant/taskdefs/optional/junitlauncher/**/*"/>
+ <or>
+ <!-- we need JUnit jupiter engine only in tests where we test the junitlauncher task -->
+ <filename name="${optional.package}/junitlauncher/**/*"/>
+ <filename name="org/example/junitlauncher/jupiter/**/*"/>
+ </or>
</selector>
<selector id="needs.apache-regexp">