from the specified remote repositories: central (http://repo1.maven.org/maven2), apache.snapshots (http://svn.apache.org/maven-snapshot-repository), codehaus-snapshots (http://snapshots.repository.codehaus.org), snapshots (http://svn.apache.org/maven-snapshot-repository)
I had similar problems and the two repos I was given are: I think http://people.apache.org/maven-snapshot-repository and http://svn.apache.org/maven-snapshot-repository resolve to the same thing. I'm not sure if http://snapshots.maven.codehaus.org/maven2 resolves to http://snapshots.repository.codehaus.org (having just checked they don't appear to) <pluginRepositories> <pluginRepository> <id>apache.snapshots</id> <name>Maven Plugin Snapshots</name> <url>http://people.apache.org/maven-snapshot-repository</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> and <pluginRepositories> <pluginRepository> <id>snapshots</id> <name>Maven Plugin Snapshots</name> <url> http://snapshots.maven.codehaus.org/maven2</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]