我的pom.xml
(在<plugin>
内部)中有这段代码
<execution>
<id>npm</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>ci</arguments>
</configuration>
</execution>
<execution>
<id>Run Unit Tests</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>run test</arguments>
</configuration>
</execution>
运行mvn clean install
时会跳过Run Unit Tests
执行步骤吗?
答案 0 :(得分:1)
您可能可以执行以下操作。
<properties>
下定义类似<run.unit.tests.skip>false</run.unit.tests.skip>
的内容<skip>${run.unit.tests.skip}</skip>
。mvn clean install -Drun.unit.tests.skip=true
将进行命令行调用。