I am getting the following error when I try and build my web app -
Failed to execute goal on project MyApp: Could not resolve dependencies for project com.myapp:MyApp:war:1.0-SNAPSHOT: Could not find artifact org.atmosphere.samples:atmosphere-jaxrs2-chat:jar:1.0.5 in primefaces (http://repository.primefaces.org/) -> [Help 1]
Here's the repositories and dependencies sections of my pom.xml
<repositories>
<repository>
<url>http://repository.primefaces.org/</url>
<id>primefaces</id>
<layout>default</layout>
<name>Repository for library PrimeFaces 3.2</name>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>3.5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-runtime</artifactId>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>org.atmosphere.samples</groupId>
<artifactId>atmosphere-jaxrs2-chat</artifactId>
<version>1.0.5</version>
</dependency>
</dependencies>
I don't understand why it is looking for the artifact org.atmosphere.samples:atmosphere-jaxrs2-chat:jar:1.0.5 in the primefaces repository? Why doesn't it just pull it from the central maven repository? I thought that repository is automatically used by default?
It seems to have no problem with the atmosphere-runtime artifact so I don't understand why the other atmosphere artifact is causing this problem?
~/.m2/repositoryper @ManfredMoser's excellent answer. Perhaps this could help in your case too? – Daniel Dec 21 '12 at 18:48