blob: aba1d2aa39eb7bc3ce585ee0f0f0b5be6d3d8566 [file] [log] [blame]
<?xml version="1.0"?><project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.it0114</groupId>
<artifactId>it0114-extension</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<name>it0114 - extension</name>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>attached</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/assembly.xml</descriptor>
</descriptors>
<outputDirectory>target</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>