| <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.mng3545</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> |
| <activeByDefault>true</activeByDefault> |
| </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> |
| <activeByDefault>true</activeByDefault> |
| </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> |
| <profile> |
| <id>profile3</id> |
| <activation> |
| <property> |
| <name>profile3-activation-property</name> |
| <value>true</value> |
| </property> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.its.plugins</groupId> |
| <artifactId>maven-it-plugin-touch</artifactId> |
| <executions> |
| <execution> |
| <id>profile3-touch</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>touch</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${project.build.directory}/profile3</outputDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>profile4</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.its.plugins</groupId> |
| <artifactId>maven-it-plugin-touch</artifactId> |
| <executions> |
| <execution> |
| <id>profile4-touch</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>touch</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${project.build.directory}/profile4</outputDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>profile5</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.its.plugins</groupId> |
| <artifactId>maven-it-plugin-touch</artifactId> |
| <executions> |
| <execution> |
| <id>profile5-touch</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>touch</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${project.build.directory}/profile5</outputDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| </project> |