blob: b197a2cb0571ff0f664c79cff5a55381d6f96844 [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.mng3473</groupId>
<artifactId>mng-3473-mojo</artifactId>
<packaging>maven-plugin</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>mng-3473-mojo Maven Mojo</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>plugin-2.4.1</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>plugin.version</name>
<value>2.4.1</value>
</property>
</activation>
<reporting>
<plugins>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<!--only fails with 2.4, not 2.3 or 2.4.1-->
<version>2.4.1</version>
</plugin>
</plugins>
</reporting>
</profile>
<profile>
<id>plugin-2.4</id>
<activation>
<property>
<name>plugin.version</name>
<value>2.4</value>
</property>
</activation>
<reporting>
<plugins>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<!--only fails with 2.4, not 2.3 or 2.4.1-->
<version>2.4</version>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-6</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<outputDirectory>target/site</outputDirectory>
</reporting>
</project>