exec.skip在maven命令中做了什么 -
mvn clean install -Dexec.skip=true
网站http://www.mojohaus.org/exec-maven-plugin/java-mojo.html#skip说:
Skip the execution. Starting with version 1.4.0 the former name skip has been changed into exec.skip
但执行它会跳过什么?
答案 0 :(得分:0)
正如你在exec-maven-plugin的文档中看到的那样,这个程序只会跳过执行这个插件。
当然,如果你的项目中没有正确的exec-maven-lugin配置 - exec.skip
什么都不做。