The parent pom has got the following dependencies

<dependencies>
    <dependency>
        <groupId>tv.my</groupId>
        <artifactId>cable</artifactId>
    </dependency>
    <dependency>
        <groupId>tv.my</groupId>
        <artifactId>sat</artifactId>
    </dependency>
</dependencies>

In the child's pom I want to exclude the whole tv.my:sat dependency. Maybe with something like this:

<dependencies>
    <excludes>
        <exlude>
            <dependency>
                <groupId>tv.my</groupId>
                <artifactId>cable</artifactId>
            </dependency>
        <exlude>
    <excludes>
</dependencies>

Is this somehow possible?

link|improve this question

feedback

1 Answer

You may find your answer in is-there-anyway-to-exclude-artifacts-inherited-from-a-parent-pom

link|improve this answer
Unfortunately I didn't. :-( – New Talk Jun 16 '11 at 6:20
feedback

Your Answer

 
or
required, but never shown

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