mirror of https://github.com/apache/maven.git
45 lines
1.1 KiB
XML
45 lines
1.1 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.maven.it.mng2006</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>1</version>
|
|
<relativePath>../parent</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>sub1</artifactId>
|
|
|
|
<build>
|
|
<defaultGoal>integration-test</defaultGoal>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-help-plugin</artifactId>
|
|
<configuration>
|
|
<output>${project.build.directory}/effective-pom.xml</output>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>effective-pom</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>effective-pom</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-verifier-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>verify</id>
|
|
<goals>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|