Added appropriate Maven configuration to build the nar-maven-plugin with Maven 3.X instead of Maven 3.2.X

Signed-off-by: joewitt <joewitt@apache.org>
This commit is contained in:
Karl-Heinz Marbaise 2014-12-13 22:58:01 +01:00 committed by joewitt
parent 21c24b6b68
commit 9ccbf8be7b
1 changed files with 19 additions and 2 deletions

View File

@ -42,7 +42,23 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.3</version>
</plugin>
<executions>
<execution>
<id>default-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
<phase>process-classes</phase>
</execution>
<execution>
<id>help-descriptor</id>
<goals>
<goal>helpmojo</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
@ -68,6 +84,7 @@
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
<distributionManagement>