exec.skip在maven命令中做了什么

时间:2016-04-15 07:27:30

标签: maven maven-2 maven-3 maven-plugin

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

但执行它会跳过什么?

1 个答案:

答案 0 :(得分:0)

正如你在exec-maven-plugin的文档中看到的那样,这个程序只会跳过执行这个插件。

当然,如果你的项目中没有正确的exec-maven-lugin配置 - exec.skip什么都不做。

相关问题