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?