Repository: ant
Updated Branches:
  refs/heads/master 41ecf7588 -> 33e2efec4


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


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/33e2efec
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/33e2efec
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/33e2efec

Branch: refs/heads/master
Commit: 33e2efec43a86d5a08d01436c4b18649100d7e05
Parents: 41ecf75
Author: Jaikiran Pai <[email protected]>
Authored: Wed Aug 22 20:43:40 2018 +0530
Committer: Jaikiran Pai <[email protected]>
Committed: Wed Aug 22 20:43:40 2018 +0530

----------------------------------------------------------------------
 build.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/33e2efec/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 0fa137f..43aea59 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>

Reply via email to