mirror of https://github.com/apache/maven.git
Fixing core-it-plugins so they won't bomb on surefire:test with NPE if there is nothing under src/test/java.
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@573699 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e1c2108536
commit
67e0b8d0ae
|
@ -29,6 +29,11 @@
|
|||
<name>Maven Integration Test Plugin :: Context Passing</name>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
<name>Maven Integration Test Plugin :: Envar</name>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
<name>Maven Integration Test Plugin :: Interpolated POM Configuration</name>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
<name>Maven Integration Test Plugin :: Loadable</name>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
<name>Maven Core Integration Test Plugin</name>
|
||||
<version>1.1-SNAPSHOT</version>
|
||||
<inceptionYear>2001</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
<name>Maven Integration Test Plugin :: Parameter Implementation</name>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
<name>Maven Integration Test Plugin :: Setter</name>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
<name>Maven Integration Test Plugin :: Uses Properties Plugin</name>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
|
|
|
@ -23,4 +23,15 @@
|
|||
<module>maven-it-plugin-touch</module>
|
||||
<module>maven-it-plugin-uses-properties</module>
|
||||
</modules>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.3</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<parent>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-parent</artifactId>
|
||||
<version>6-SNAPSHOT</version>
|
||||
<version>7-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.apache.maven.its</groupId>
|
||||
<artifactId>maven-integration-test-helper</artifactId>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
<parent>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-parent</artifactId>
|
||||
<version>4</version>
|
||||
<version>7-SNAPSHOT</version>
|
||||
<relativePath>../pom/maven/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.maven.its</groupId>
|
||||
|
|
Loading…
Reference in New Issue