Could be a similar problem to the one I had with an older example. Here is the help from Julien Carsique that helped me. You can explore the maven repositories with a web browser to check that artifacts exist etc. Roger.
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> -- Posted by "RogerN" at Nuxeo Discussions <http://nuxeo.org/discussions> View the complete thread: <http://www.nuxeo.org/discussions/thread.jspa?threadID=2544#7024> _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm
