Hi, Right now, in Maven2, to exclude a single transitive dependency, I have to do something like:
<dependency>
<groupId>sample.group</groupId>
<artifactId>sample-artifactB</artifactId>
<version>1</version>
<exclusions>
<exclusion>
<groupId>sample.group</groupId>
<artifactId>sample-artifactAB</artifactId>
</exclusion>
</exclusions>
</dependency>
The problem with this approach is that i have to manually exclude every dependency.
Is there a way to use some sort of wildcard to exclude all transitive dependency at once instead of excluding them one by one.