Browse Source

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

master
Jaikiran Pai 6 years ago
parent
commit
33e2efec43
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      build.xml

+ 2
- 2
build.xml View File

@@ -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>


Loading…
Cancel
Save