在执行mvn clean install-dskiptests时,我想从构建路径中排除一个文件com.java.test.test.java(因为它有一些错误)。怎么做?
gk7wooem1#
你可以用 <exclude> 标记pom.xml以排除maven中的文件。有关更多信息,请参阅https://maven.apache.org/plugins/maven-resources-plugin/examples/include-exclude.html另一种方法是将类作为参数添加到排除模式中,如:
<exclude>
mvn clean install -Dtest="*,!Test"
有关更多信息,请参阅使用maven和命令行选项跳过单个测试
1条答案
按热度按时间gk7wooem1#
你可以用
<exclude>
标记pom.xml以排除maven中的文件。有关更多信息,请参阅https://maven.apache.org/plugins/maven-resources-plugin/examples/include-exclude.html另一种方法是将类作为参数添加到排除模式中,如:
有关更多信息,请参阅使用maven和命令行选项跳过单个测试