mirror of https://github.com/apache/maven.git
71 lines
1.9 KiB
XML
71 lines
1.9 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.maven.its</groupId>
|
|
<artifactId>core-integration-testing</artifactId>
|
|
<version>2.1-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>core-integration-tests</artifactId>
|
|
<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>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<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>
|
|
<dependencies>
|
|
<dependency>
|
|
<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>
|
|
-->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
<artifactId>maven-verifier</artifactId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
<!-- TODO: not transitive in tests artifact, so must be left in main scope
|
|
<scope>test</scope>
|
|
-->
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|