Browse Source

Make 'mvn clean test-compile' finish, though tests when run still have a lot of failures.

(As usual, we suffer from a lot of complexity due to the monolithic source root;
include/exclude lists in POMs are surely still far from accurate.)


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@957607 13f79535-47bb-0310-9956-ffa450edef68
master
Jesse N. Glick 15 years ago
parent
commit
c531cbd6e9
5 changed files with 16 additions and 0 deletions
  1. +3
    -0
      src/etc/poms/ant-apache-oro/pom.xml
  2. +3
    -0
      src/etc/poms/ant-commons-net/pom.xml
  3. +3
    -0
      src/etc/poms/ant-jsch/pom.xml
  4. +3
    -0
      src/etc/poms/ant-junit/pom.xml
  5. +4
    -0
      src/etc/poms/ant/pom.xml

+ 3
- 0
src/etc/poms/ant-apache-oro/pom.xml View File

@@ -60,6 +60,9 @@
<include>org/apache/tools/ant/util/regexp/JakartaOro*</include>
<include>org/apache/tools/ant/taskdefs/optional/perforce/*</include>
</includes>
<testIncludes>
<include>org/apache/tools/ant/taskdefs/optional/perforce/*</include>
</testIncludes>
</configuration>
</plugin>
</plugins>


+ 3
- 0
src/etc/poms/ant-commons-net/pom.xml View File

@@ -61,6 +61,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
<include>org/apache/tools/ant/taskdefs/optional/net/RExec*</include>
<include>org/apache/tools/ant/taskdefs/optional/net/TelnetTask*</include>
</includes>
<testIncludes>
<include>org/apache/tools/ant/taskdefs/optional/net/FTP*</include>
</testIncludes>
</configuration>
</plugin>
</plugins>


+ 3
- 0
src/etc/poms/ant-jsch/pom.xml View File

@@ -60,6 +60,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
<includes>
<include>org/apache/tools/ant/taskdefs/optional/ssh/*</include>
</includes>
<testIncludes>
<include>org/apache/tools/ant/taskdefs/optional/ssh/*</include>
</testIncludes>
</configuration>
</plugin>
</plugins>


+ 3
- 0
src/etc/poms/ant-junit/pom.xml View File

@@ -86,6 +86,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
<excludes>
<exclude>org/apache/tools/ant/taskdefs/optional/junit/JUnit4TestMethodAdapter*</exclude>
</excludes>
<testIncludes>
<include>org/apache/tools/ant/taskdefs/optional/junit/</include>
</testIncludes>
</configuration>
</plugin>
</plugins>


+ 4
- 0
src/etc/poms/ant/pom.xml View File

@@ -131,6 +131,10 @@
<exclude>org/apache/tools/ant/taskdefs/email/MimeMailer*</exclude>
<exclude>org/apache/tools/ant/launch/**</exclude>
<exclude>org/apache/tools/ant/taskdefs/StyleTest*</exclude>
<exclude>org/apache/tools/ant/taskdefs/optional/junit/</exclude>
<exclude>org/apache/tools/ant/taskdefs/optional/net/FTP*</exclude>
<exclude>org/apache/tools/ant/taskdefs/optional/ssh/*</exclude>
<exclude>org/apache/tools/ant/taskdefs/optional/perforce/*</exclude>
</testExcludes>
</configuration>
</plugin>


Loading…
Cancel
Save