blob: 20ace197b6d6b27c9aaa373f1e0cc2acf4a0b243 [file] [log] [blame]
<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.its.mng3106</groupId>
<artifactId>test-artifact</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-touch</artifactId>
<version>2.1-SNAPSHOT</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>profile1</id>
<activation>
<property>
<name>profile1.on</name>
<value>true</value>
</property>
<jdk>none</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-touch</artifactId>
<executions>
<execution>
<id>profile1-touch</id>
<phase>validate</phase>
<goals>
<goal>touch</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/profile1</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>profile2</id>
<activation>
<property>
<name>profile2.on</name>
<value>true</value>
</property>
<file>
<exists>pom.xml</exists>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-touch</artifactId>
<executions>
<execution>
<id>profile2-touch</id>
<phase>validate</phase>
<goals>
<goal>touch</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/profile2</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>