See answers below.

[email protected] a écrit :
Reason: Unable to download the artifact from any repository

  org.nuxeo:nuxeo-ecm:pom:5.2.1-SNAPSHOT

from the specified remote repositories:
  central (http://repo1.maven.org/maven2)

Nuxeo repositories are missing (http://maven.nuxeo.org/...)

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>


And please tell us which files are wrong so that we definitively fix them :)

Thanks,

--
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