summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorJaikiran Pai <jaikiran@apache.org>2018-08-22 20:43:40 +0530
committerJaikiran Pai <jaikiran@apache.org>2018-08-22 20:43:40 +0530
commit33e2efec43a86d5a08d01436c4b18649100d7e05 (patch)
tree7beb0e9c5ef2656d1c7180be1627544eb8ffd874 /build.xml
parent41ecf7588e2ca680b43352feeca8ff1d0efaae7d (diff)
downloadant-33e2efec43a86d5a08d01436c4b18649100d7e05.tar.gz
fix the needs.junit.engine.jupiter and needs.junit.engine.vintage selectors in the build file, to narrow down their selection to only the JUnitLauncherTaskTest
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 0fa137f8d..43aea5908 100644
--- a/build.xml
+++ b/build.xml
@@ -218,7 +218,7 @@
<selector id="needs.junit.engine.vintage">
<or>
<!-- we need JUnit vintage engine only in tests where we test the junitlauncher task -->
- <filename name="${optional.package}/junitlauncher/**/*"/>
+ <filename name="${optional.package}/junitlauncher/**/JUnitLauncherTaskTest.java"/>
<filename name="org/example/junitlauncher/vintage/**/*"/>
</or>
</selector>
@@ -226,7 +226,7 @@
<selector id="needs.junit.engine.jupiter">
<or>
<!-- we need JUnit jupiter engine only in tests where we test the junitlauncher task -->
- <filename name="${optional.package}/junitlauncher/**/*"/>
+ <filename name="${optional.package}/junitlauncher/**/JUnitLauncherTaskTest.java"/>
<filename name="org/example/junitlauncher/jupiter/**/*"/>
</or>
</selector>