mirror of https://github.com/apache/maven.git
47 lines
1.2 KiB
XML
47 lines
1.2 KiB
XML
<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.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>
|