maven/maven-core-it/it0096/project/pom.xml

33 lines
984 B
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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it0096</groupId>
<artifactId>maven-it0096-root</artifactId>
<version>1</version>
</parent>
<artifactId>maven-it0096-project-level1</artifactId>
<packaging>pom</packaging>
<modules>
<module>project-level2</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.it0096</groupId>
<artifactId>maven-it0096-plugin</artifactId>
<version>1</version>
<executions>
<execution>
<id>it0096</id>
<phase>initialize</phase>
<goals>
<goal>it0096</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>