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

I have two dependencies in my pom, A and B. Both A and B have a transitive dependency on C with different versions. I want to keep the transitive dependency that comes with B, which I accomplished by adding an exclusion of C in A.

Unfortunately, I want the scope of B to be 'test', which means that currently C will not be included outside of the test scope. How can I resolve this? Can an exclusion be for a specific scope only? Alternatively, can I specify which version to use for a transitive dependency?

Concretely, here is what my pom looks like:

    <dependency>
        <groupId>com.netflix.astyanax</groupId>
        <artifactId>astyanax</artifactId>
        <version>1.0.4</version>
        <exclusions>
            <exclusion>
                <groupId>org.apache.cassandra</groupId>
                <artifactId>cassandra-all</artifactId>
            </exclusion>
        </exclusions>  
    </dependency>
    <dependency>
        <groupId>org.cassandraunit</groupId>
        <artifactId>cassandra-unit</artifactId>
        <version>1.1.1.1</version>
        <scope>test</scope>
    </dependency>

So concretely: how can I include cassandra-all when I run code outside of the test scope and still keep the scope of cassandraunit test only?

share|improve this question

2 Answers

I am not sure I understood everything, but, in any case, you should be able to achieve this with profiles.

In your pom, create a profile A in which you add your dependency A with exclusion of B and a profile B in which you'll have a dependency with exclusion of A.

On runtime, depending on which of the profile you have selected you'll include one or the other.

HIH

share|improve this answer
up vote 0 down vote accepted

I apologize if my question wasn't as clear as it could have been. The way I resolved this wasn't hard at all:

  • I added a separate dependency for C in my pom
  • I kept the exclusion of C in A

Concretely here, I just added:

    <dependency>
        <groupId>org.apache.cassandra</groupId>
        <artifactId>cassandra-all</artifactId>
        <version>1.1.5</version>
    </dependency>

and also the following dependency that was missing at runtime otherwise.

    <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
        <version>2.6</version>
    </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.