On Wed, 11 Nov 2009 18:23:50 -0500 Grant Ingersoll <[email protected]> wrote:
> https://issues.apache.org/jira/browse/MAHOUT-198 tracks this. I am > committing now. Please check out, delete your ~/.m2/repository/org > directory and try mvn clean install! Trashed my local maven repo, checked out an built again - it did not find the lucene-2.9.1 release. Adding the following repository to the pom fixed that problem for me: Index: maven/pom.xml =================================================================== --- maven/pom.xml (revision 835320) +++ maven/pom.xml (working copy) @@ -76,6 +76,12 @@ <layout>default</layout> </repository> <repository> + <id>maven2-repository.maven.org</id> + <name>Maven.org Repository for Maven</name> + <url>http://repo1.maven.org/maven2</url> + <layout>default</layout> + </repository> + <repository> <id>Apache snapshots</id> <url>http://people.apache.org/maven-snapshot-repository</url> <snapshots> After that the build runs smoothly for me. Big Thanks to you Grant, for resolving all those issues. Isabel
