blob: 0f2e515f4874097225945b01e41b7465b5e1d1d9 [file] [log] [blame]
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>org.apache.maven.its.it0100</groupId>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>child</artifactId>
<name>child</name>
<packaging>pom</packaging>
<build>
<plugins>
<!--
<plugin>
<artifactId>maven-help-plugin</artifactId>
<executions>
<execution>
<configuration>
<output>target/effective-pom.txt</output>
</configuration>
<phase>initialize</phase>
<goals>
<goal>effective-pom</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<artifactId>maven-verifier-plugin</artifactId>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>