Hello,

Your project doesn't have the Nuxeo repositories defined in one of the Maven POMs :
from the specified remote repositories:
central ([http://repo1.maven.org/maven2])

So, add the following part into your parent pom.xml file :
 <repositories>
   <repository>
     <id>public</id>
     <url>http://maven.nuxeo.org/public</url>
     <releases>
       <enabled>true</enabled>
     </releases>
     <snapshots>
       <enabled>false</enabled>
     </snapshots>
   </repository>
   <repository>
     <id>public-snapshot</id>
     <url>http://maven.nuxeo.org/public-snapshot</url>
     <releases>
       <enabled>false</enabled>
     </releases>
     <snapshots>
       <enabled>true</enabled>
     </snapshots>
   </repository>
 </repositories>




--
Julien Carsique, Nuxeo (Paris, France)
www.nuxeo.com - The Open Source ECM Platform - www.nuxeo.org
Nuxeo ECM Stack - The Java EE, scalable, standard-based ECM Platform
[email protected] | Tel: +33 1 40 33 79 87

_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm

Reply via email to