Author: foconer Date: Tue Aug 29 21:18:56 2006 New Revision: 438348 URL: http://svn.apache.org/viewvc?rev=438348&view=rev Log: Issues:
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 Modified: incubator/activemq/trunk/activemq-core/pom.xml incubator/activemq/trunk/pom.xml Modified: incubator/activemq/trunk/activemq-core/pom.xml URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-core/pom.xml?rev=438348&r1=438347&r2=438348&view=diff ============================================================================== --- incubator/activemq/trunk/activemq-core/pom.xml (original) +++ incubator/activemq/trunk/activemq-core/pom.xml Tue Aug 29 21:18:56 2006 @@ -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> Modified: incubator/activemq/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/pom.xml?rev=438348&r1=438347&r2=438348&view=diff ============================================================================== --- incubator/activemq/trunk/pom.xml (original) +++ incubator/activemq/trunk/pom.xml Tue Aug 29 21:18:56 2006 @@ -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>
