blob: f48835de60b3f24b4e883e83b1ca57b83e8056a8 [file] [log] [blame]
<project>
<modelVersion>4.0.0</modelVersion>
<name>Maven Integration Test :: it0056</name>
<groupId>org.apache.maven.its.it0056</groupId>
<artifactId>maven-it-it0056</artifactId>
<description>Test that multiple executions of the compile goal with different
includes/excludes will succeed.</description>
<packaging>jar</packaging>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>validation-phase-execution</id>
<phase>validate</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<excludes>
<exclude implementation="java.lang.String">**/PersonTwo.java</exclude>
</excludes>
<testExcludes>
<testExclude implementation="java.lang.String">**/PersonTwoTest.java</testExclude>
</testExcludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>