2006-10-26 01:00:09 -04:00
|
|
|
<project>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2007-01-03 08:29:04 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>core-integration-testing</artifactId>
|
2007-09-23 21:31:02 -04:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2007-01-03 08:29:04 -05:00
|
|
|
</parent>
|
2006-10-26 01:23:09 -04:00
|
|
|
<artifactId>core-integration-tests</artifactId>
|
2006-10-26 01:00:09 -04:00
|
|
|
<name>Maven Integration Tests</name>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>**/IntegrationTestSuite.java</include>
|
|
|
|
</includes>
|
|
|
|
<forkMode>never</forkMode>
|
2007-09-23 21:31:02 -04:00
|
|
|
<skip>true</skip>
|
2006-10-26 01:00:09 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-09-23 21:31:02 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2006-10-26 01:00:09 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2007-09-23 21:31:02 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>run-its</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2006-10-26 01:00:09 -04:00
|
|
|
<dependencies>
|
2007-02-27 16:51:50 -05:00
|
|
|
<dependency>
|
2007-09-23 21:31:02 -04:00
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>maven-integration-test-helper</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
|
|
|
<!-- TODO: not transitive in tests artifact, so must be left in main scope
|
|
|
|
<scope>test</scope>
|
|
|
|
-->
|
2007-02-27 16:51:50 -05:00
|
|
|
</dependency>
|
2006-10-26 01:00:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-verifier</artifactId>
|
2007-09-23 23:16:04 -04:00
|
|
|
<version>1.2-SNAPSHOT</version>
|
2007-09-23 21:31:02 -04:00
|
|
|
<!-- TODO: not transitive in tests artifact, so must be left in main scope
|
|
|
|
<scope>test</scope>
|
|
|
|
-->
|
2006-10-26 01:00:09 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|