Maven deploy跳过某个module解决办法

来源:互联网 发布:网络主播签约合同 编辑:程序博客网 时间:2024/06/07 03:55

I don’t want to deploy one of the artifacts in my multi-module build. Can I skip deployment?

<plugin>    <groupId>org.apache.maven.plugins</groupId>    <artifactId>maven-deploy-plugin</artifactId>    <version>2.8.2</version>    <configuration>        <skip>true</skip>    </configuration></plugin>

参考:http://maven.apache.org/plugins/maven-deploy-plugin/faq.html

0 0