Maven exec插件跳过参数

时间:2014-08-20 00:04:57

标签: maven gruntjs maven-plugin pom.xml exec-maven-plugin

我在我的pom中有maven exec插件执行grunt。当我调用mvn clean install时,有没有办法跳过插件执行。我无法将<skip>true</skip置于配置中。我正在寻找像mvn clean install -Dexec.skip = true这样的选项。任何线索?

1 个答案:

答案 0 :(得分:0)

比你没有阅读docs well,因为有以下信息:

摘自文档:

  

跳过:

     

略过执行。

     
      
  • 类型:布尔值
  •   
  • 自:1.0.1
  •   
  • 必填:否
  •   
  • 用户属性:跳过
  •   
  • 默认值:false
  •   

条目User Property: skip将指导您使用以下内容:

mvn -Dskip=true ....