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

I added

<dependency>
    <groupId>org.jboss.resteasy</groupId>
    <artifactId>resteasy-jaxrs-all</artifactId>
    <version>2.2.1.GA</version>
    <scope>provided</scope>
</dependency>

and I'm using

<repositories>
<repository>
        <id>jboss</id>
        <url>http://repository.jboss.org/nexus/content/groups/public</url>
    </repository>
</repositories>

When I try to build, I get the following error. What am I doing wrong?

[ERROR] Failed to execute goal on project tapvox-api: Could not resolve dependencies for project com.myproject.api:myproject-api:war:1.0-SNAPSHOT: Could not find artifact org.jboss.resteasy:resteasy-jaxrs-all:jar:2.2.1.GA in jboss (http://repository.jboss.org/nexus/content/groups/public) -> [Help 1]

share|improve this question

2 Answers

up vote 4 down vote accepted

The dependency that you are trying to download does not have any jars or transitive dependencies. Since the default type is jar, then this will fail. If you put

<type>pom</type>

in your dependency, then you get the only artifact that this dependency has to offer. See pom

I guess that you are trying to fetch the wrong dependency.

share|improve this answer
Yup thanks. I wanted to get resteasy-jaxrs ... I guess after looking at the screen for hours resteasy-jaxrs-all looked the same X( – Adrian Rodriguez Nov 17 '11 at 18:39

You have to specify a dependency type. Change your dependency to look like this:

<dependency>
    <groupId>org.jboss.resteasy</groupId>
    <artifactId>resteasy-jaxrs-all</artifactId>
    <version>2.2.1.GA</version>
    <type>pom</type>                             <<<<<
    <scope>provided</scope>
</dependency>
share|improve this answer

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.