maven/maven-core-it/it0068/pom.xml

30 lines
951 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>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-it0068</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Maven it0068</name>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>xpp3-writer</goal>
<goal>java</goal>
<goal>xpp3-reader</goal>
</goals>
<configuration>
<version>1.0.0</version>
<model>test.mdo</model>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>