mirror of https://github.com/apache/maven.git
36 lines
1.0 KiB
XML
36 lines
1.0 KiB
XML
|
|
||
|
<project>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.apache.maven.integrationtests</groupId>
|
||
|
<artifactId>maven-core-integrationtests</artifactId>
|
||
|
<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>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|