On Nov 19, 2006, at 12:43 PM, Jorg Heymans wrote:
Try again.
I did... same deal. And it was the same last night.
Did you configure a mirror ?
I'm not sure... should I have? :-) I just checked around, and saw that
I had a ~/.m2/settings.xml which must have been from some time ago, and
then a ~/.maven/ which has no settings.xml. I moved the file to
~/.maven and 'mvn install'ed again, but that didn't seem to make any
difference.
Here's my settings.xml... does it look righteous to you?:
------------------------------------------------------------------------
--------------------------
<?xml version="1.0"?>
<settings>
<profiles>
<profile>
<id>apache</id>
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Maven Snapshots</name>
<url>http://people.apache.org/maven-snapshot-repository</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<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>
</profile>
<profile>
<id>codehaus</id>
<pluginRepositories>
<pluginRepository>
<id>codehaus.plugin.snapshots</id>
<name>CodeHaus Plugin Snapshots</name>
<url>http://snapshots.maven.codehaus.org/maven2</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<mirrors>
<mirror>
<id>mirrors.dotsrc.org</id>
<url>http://mirrors.dotsrc.org/maven2</url>
<mirrorOf>central</mirrorOf>
<!-- Denmark -->
</mirror>
<mirror>
<id>repo.mergere.com</id>
<url>http://repo.mergere.com/maven2</url>
<mirrorOf>central</mirrorOf>
<!-- United States, somewhere -->
</mirror>
<mirror>
<id>lsu.edu</id>
<url>http://ibiblio.lsu.edu/main/pub/packages/maven2</url>
<mirrorOf>central</mirrorOf>
<!-- United States, Louisiana -->
</mirror>
<!--
<mirror>
<id>ibiblio.net</id>
<url>http://www.ibiblio.net/pub/packages/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
-->
<!-- United States, North Carolina -->
<!--
<mirror>
<id>planetmirror.com</id>
<url>http://downloads.planetmirror.com/pub/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
-->
<!-- Australia, Queensland -->
</mirrors>
</settings>
------------------------------------------------------------------------
--------------------------
Thanks,
—ml—