fix some warning when building with maven3

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1103901 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2011-05-16 21:26:54 +00:00
parent 36466076b6
commit 7c018c68ed
3 changed files with 15 additions and 1 deletions

View File

@ -204,7 +204,7 @@
</executions>
<configuration>
<descriptor>src/main/assembly/bin.xml</descriptor>
<finalName>apache-archiva-${version}</finalName>
<finalName>apache-archiva-${project.version}</finalName>
</configuration>
</plugin>
<plugin>

View File

@ -46,6 +46,7 @@
</dependency>
</dependencies>
</dependencyManagement>
<reporting>
<plugins>
<!-- No need for the standard project reports -->
@ -93,9 +94,12 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.2</version>
<configuration>
<aggregate>true</aggregate>
</configuration>

10
pom.xml
View File

@ -112,6 +112,16 @@
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>