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>
|
|
|
|
<version>1-SNAPSHOT</version>
|
|
|
|
</parent>
|
2006-10-26 01:23:09 -04:00
|
|
|
<artifactId>core-integration-tests</artifactId>
|
2006-10-26 01:00:09 -04:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<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>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2007-02-27 16:51:50 -05:00
|
|
|
<!-- needed for VersionRange and Version -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
<version>2.0.5</version>
|
|
|
|
</dependency>
|
2006-10-26 01:00:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-verifier</artifactId>
|
2007-02-27 16:51:50 -05:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2006-10-26 01:00:09 -04:00
|
|
|
</dependency>
|
2007-06-29 02:01:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>maven-integration-test-helper</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2006-10-26 01:00:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|