Parent pom has 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 pom, I want to eliminate all the tv.my:sat dependency. Maybe with something like this:
<dependencies> <excludes> <exlude> <dependency> <groupId>tv.my</groupId> <artifactId>cable</artifactId> </dependency> <exlude> <excludes> </dependencies>
How is this possible?
user321068
source share