6

我正在使用 maven-shade-plugin,我不仅想排除我的测试代码,还想排除我在阴影 jar 中的测试依赖项。我意识到我可以专门排除某些工件(如junit),但这是一项很好的工作并且很可能容易出现一些错误。

我设置minimizeJar为 true,但我仍然看到我的 Junit 和 Mockito 依赖项出现。有没有办法通过配置排除所有测试范围的依赖项?

4

1 回答 1

8

确保您的测试依赖项在test范围内:

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version>
        <scope>test</scope>
    </dependency>
...

检查您的依赖项设置是否使用

mvn dependency:tree
于 2013-05-10T07:37:41.630 回答