> 
> Found it, I think:
> http://snapshots.maven.codehaus.org/maven2/org/codehaus/mojo/exec-maven-
> plugin/0.4-SNAPSHOT/
> 
> However, I didn't have any luck convincing Maven to download it from
> there.  I tried adding:
>   <repositories>
>     <repository>
>       <id>codehaus-snapshot</id>
>       <name>Codehaus Snapshot Repository</name>
>       <url>http://snapshots.maven.codehaus.org/maven2/</url>
>     </repository>
>   </repositories>
> 
> Maybe someone else can fill in the missing details.

Try adding this section to the repository definition above.
(see http://maven.apache.org/maven-model/maven.html)

          <snapshot>
            <enabled>true</enabled>
          </snapshot>

e.g.

   <repositories>
     <repository>
       <id>codehaus-snapshot</id>
       <name>Codehaus Snapshot Repository</name>
       <url>http://snapshots.maven.codehaus.org/maven2/</url>
       <snapshot>
         <enabled>true</enabled>
       </snapshot>
     </repository>
   </repositories>


I think by default snapshot is disabled.

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

Reply via email to