Try the url and you'll get a 404. From my experience, there are
sometimes some problems with the Apache Snapshots repository. Whenever
you use a snapshot version, just install the pom in an internal
repository unless you want to always work with the latest nightly
build.

On 5/29/06, Adam Hardy <[EMAIL PROTECTED]> wrote:
I am still trying to work out an issue with continuum: mvn can't find the 
snapshot to download despite having configuration for the snapshots repository 
on cvs.apache.org (see below).

I think it might be that continuum is reading the repository configuration in the POM, but 
ignoring the <snapshots><enabled> setting on the cvs.apache.org repository.

Obviously I have a couple of lines of investigation still open to me involving 
the source code, but any suggestions would be more than welcome!


-------- Original Message --------

I'm setting up Continuum to run my multi-project and I have a couple of
snapshot repositories configured along with my normal maven-proxy repo.
Continuum gives me this error:
[DEBUG] maven-site-plugin: resolved to version 2.0-beta-5 from
repository apache.snapshots
[DEBUG] Trying repository apache.snapshots
Downloading:
http://cvs.apache.org/maven-snapshot-repository/org/apache/maven/plugins
/maven-site-plugin/2.0-beta-5/maven-site-plugin-2.0-beta-5.pom
[DEBUG] Artifact not found - using stub model: Unable to locate resource
in repository

  org.apache.maven.plugins:maven-site-plugin:pom:2.0-beta-5

from the specified remote repositories:
  central
(http://macari.uk.nomadsoft.com:20003/maven-proxy/m2-proxy-repo),
  codehaus.snapshots (http://snapshots.maven.codehaus.org/maven2/),
  apache.snapshots (http://cvs.apache.org/maven-snapshot-repository)

[DEBUG] Using defaults for missing POM
org.apache.maven.plugins:maven-site-plugin:pom:2.0-beta-5


apache.snapshot is http://cvs.apache.org/maven-snapshot-repository which
has the jar, but in the directory named 2.0-beta-5-SNAPSHOT
So what's wrong with this picture? I guess it's staring me in the face
but I don't see it. Below is my repository config in the parent pom.


  <repositories>
    <repository>
      <id>central</id>

<url>http://macari.uk.nomadsoft.com:20003/maven-proxy/m2-proxy-repo</url
>
    </repository>
    <repository>
      <id>apache.snapshots</id>
      <url>http://cvs.apache.org/maven-snapshot-repository</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
    <repository>
      <id>codehaus.snapshots</id>
      <url>http://snapshots.maven.codehaus.org/maven2</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <id>central</id>

<url>http://macari.uk.nomadsoft.com:20003/maven-proxy/m2-proxy-repo</url
>
    </pluginRepository>
    <pluginRepository>
      <id>apache.snapshots</id>
      <url>http://cvs.apache.org/maven-snapshot-repository</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </pluginRepository>
    <pluginRepository>
      <id>codehaus.snapshots</id>
      <url>http://snapshots.maven.codehaus.org/maven2/</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </pluginRepository>
  </pluginRepositories>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to