Here's the content of the email I mentioned...

The maven-jar-plugin version 2.1-SNAPSHOT does not exist on ibiblio,
as you can see here:
http://www.ibiblio.org/maven2/org/apache/maven/plugins/maven-jar-plugin/

It only exists in the Codehaus Maven repo:
http://snapshots.maven.codehaus.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.1-SNAPSHOT/

Add this to your pom.xml and try again:
 <repositories>
   <repository>
     <id>Maven Snapshots</id>
     <url>http://snapshots.maven.codehaus.org/maven2/</url>
     <snapshots>
       <enabled>true</enabled>
     </snapshots>
     <releases>
       <enabled>false</enabled>
     </releases>
   </repository>
 </repositories>
 <pluginRepositories>
   <pluginRepository>
     <id>Maven Snapshots</id>
     <url>http://snapshots.maven.codehaus.org/maven2/</url>
     <snapshots>
       <enabled>true</enabled>
     </snapshots>
     <releases>
       <enabled>false</enabled>
     </releases>
   </pluginRepository>
 </pluginRepositories>

On 3/28/06, Fabrício Lemos <[EMAIL PROTECTED]> wrote:
> Wayne,
>
> Could you post the solution here? I have the same problem.
>
> thanks in advance,
> Fabbrício Lemos
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to