在Maven2中,为了排除单个传递依赖,我必须做这样的事情:
<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>
这种方法的问题在于我必须为每个由此贡献的传递依赖项执行此操作sample-artifactB。
有没有办法使用某种通配符一次排除所有传递依赖,而不是一个一个?
元芳怎么了
慕容708150
倚天杖