blob: a9accbf8c342badd87f7004fa0a4629f15395290 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.its.mng624.simple</groupId>
<artifactId>myproject</artifactId>
</parent>
<artifactId>child</artifactId>
<packaging>jar</packaging>
<name>mng624 simple child</name>
<profiles>
<profile>
<id>test</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
<phase>install</phase>
<configuration>
<target>
<echo>hello world</echo>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>