It will works... just one thinks more...
The problem now is different. You have to declare in your pom where is the
codehaus snaphot repository (and not the codehaus repository). For this, you
just have to declare the pluginRepositories instruction in our pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>

  [...]

 <pluginRepositories>
   <pluginRepository>
     <id>codehaus.snapshot</id>
     <name>Codehause Snapshot Repository</name>
     <url>http://snapshots.repository.codehaus.org/</url>
   </pluginRepository>
 </pluginRepositories>

 <build>
  [...]
</project>

HTH,

Rémy

Reply via email to