Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get arquillian run with jboss 7. I have downloaded the Quickstart projects from JBoss site, at http://www.jboss.org/jbossas/downloads, but I'm having troubles in running the Arquillian tests in the kitchensink project.

Maven is not able to find:

org.jboss.arquillian:arquillian-bom:pom:1.0.0.CR1

When I run

mvn clean test -Parq-jbossas-managed

Maven allways fail to find the artifact:


Downloading: http://repo1.maven.org/maven2/org/jboss/arquillian/arquillian-bom/1.0.0.CR1/arquillian-bom-1.0.0.CR1.pom
[INFO] Unable to find resource 'org.jboss.arquillian:arquillian-bom:pom:1.0.0.CR1' in repository central (http://repo1.maven.org/maven2)
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).


Project ID: org.jboss.arquillian:arquillian-bom

Reason: POM 'org.jboss.arquillian:arquillian-bom' not found in repository: Unable to download the artifact from any repository

  org.jboss.arquillian:arquillian-bom:pom:1.0.0.CR1

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

 for project org.jboss.arquillian:arquillian-bom

I'm using Maven 3, though with maven 2 the result is the same.

is Anyone running into this dependency problem?

share|improve this question

2 Answers

The dependency org.jboss.arquillian:arquillian-bom dependency is available in the JBoss Maven repository. It is preferable to add the "jboss-public" group of the JBoss Maven repository to your Maven settings.xml file so that you do not need to add this repository to every project POM.

share|improve this answer

I have this dependency problem, too, although I've added the JBoss Maven repository like Vineet suggested.

arquillian-parent-jetty-1.0.0.CR1.pom is correctly downloaded from the JBoss repository:

Downloading: https://repository.jboss.org/nexus/content/groups/public-jboss/org/jboss/arquillian/container/arquillian-parent-jetty/1.0.0.CR1/arquillian-parent-jetty-1.0.0.CR1.pom

But then Maven tries to download arquillian-bom from repository central, although it's available at https://repository.jboss.org/nexus/content/groups/public-jboss/org/jboss/arquillian/arquillian-bom/1.0.0.CR1/arquillian-bom-1.0.0.CR1.pom

Downloading: http://repo1.maven.org/maven2/org/jboss/arquillian/arquillian-bom/1.0.0.CR1/arquillian-bom-1.0.0.CR1.pom
[INFO] Unable to find resource 'org.jboss.arquillian:arquillian-bom:pom:1.0.0.CR1' in repository central (http://repo1.maven.org/maven2)

As workaround I copied the arquillian-bom-1.0.0.CR1.pom to my local repository myself but then everyone else who wants to build my project has to do that too.

share|improve this answer
Yes, I also have the JBoss Maven repository configured but still have the same problem. – Joao Pereira Oct 13 '11 at 13:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.