2006-10-26 01:00:09 -04:00
|
|
|
<project>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.maven.integrationtests</groupId>
|
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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-verifier</artifactId>
|
2006-12-13 09:36:47 -05:00
|
|
|
<version>1.0</version>
|
2006-10-26 01:00:09 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|