You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2018/03/20 15:40:54 UTC

ant git commit: actually try to compile the tests

Repository: ant
Updated Branches:
  refs/heads/master 1dcbdaebb -> 299728567


actually try to compile the tests


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

Branch: refs/heads/master
Commit: 299728567e3fa2ba8b3dd3205bb4e6d8db78291f
Parents: 1dcbdae
Author: Stefan Bodewig <bo...@apache.org>
Authored: Tue Mar 20 16:40:33 2018 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Tue Mar 20 16:40:33 2018 +0100

----------------------------------------------------------------------
 src/etc/poms/ant-junitlauncher/pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/29972856/src/etc/poms/ant-junitlauncher/pom.xml
----------------------------------------------------------------------
diff --git a/src/etc/poms/ant-junitlauncher/pom.xml b/src/etc/poms/ant-junitlauncher/pom.xml
index 930ce64..132cc0c 100644
--- a/src/etc/poms/ant-junitlauncher/pom.xml
+++ b/src/etc/poms/ant-junitlauncher/pom.xml
@@ -70,11 +70,14 @@
                     <includes>
                         <include>org/apache/tools/ant/taskdefs/optional/junitlauncher/*</include>
                     </includes>
+                    <testIncludes>
+                        <include>org/apache/tools/ant/taskdefs/optional/junitlauncher/*</include>
+                    </testIncludes>
                 </configuration>
             </plugin>
         </plugins>
         <sourceDirectory>../../../../src/main</sourceDirectory>
-        <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+        <testSourceDirectory>../../../../src/tests/junit</testSourceDirectory>
         <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
         <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
         <directory>../../../../target/${project.artifactId}</directory>