1. 

Bug: Unable to find some dependencies because the maven plugin that is downloaded are snapshots version. 

Solution: Disabled release version on pluginRepository "apache-snapshots".

2.  

Bug: https://issues.apache.org/activemq/browse/AMQ-901
Solution: Changed version of maven-xbean-plugin to release version 2.5


git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@438348 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Frederick G. Oconer 2006-08-30 04:18:56 +00:00
parent 1e7d8d8b73
commit 46c6ff97ac
2 changed files with 12 additions and 5 deletions

View File

@ -359,7 +359,7 @@
<plugin>
<groupId>org.apache.xbean</groupId>
<artifactId>maven-xbean-plugin</artifactId>
<version>2.6-SNAPSHOT</version>
<version>2.5</version>
<executions>
<execution>
<configuration>

15
pom.xml
View File

@ -94,12 +94,15 @@
</repositories>
<pluginRepositories>
<pluginRepository>
<id>apache-snapshots</id>
<pluginRepository>
<id>apache-snapshots</id>
<name>Snapshot repository</name>
<url>http://people.apache.org/maven-snapshot-repository</url>
</pluginRepository>
</pluginRepositories>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
@ -806,6 +809,10 @@
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>${jetty-version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>