在pom.xml
我frontend-maven-plugin
。
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.4</version>
<configuration>
<nodeVersion>v6.11.0</nodeVersion>
<npmVersion>3.10.10</npmVersion>
<workingDirectory>src/main/frontend</workingDirectory>
</configuration>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<execution>
<execution>
<id>npm run build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run build</arguments>
</configuration>
</execution>
</executions>
</plugin>
运行测试需要一些时间,并且在运行测试时不需要此插件。
运行mvn test
时是否可以不执行插件?
答案 0 :(得分:5)
现在has specific keys的frontend-maven-plugin可以禁止执行特定目标。例如,添加系统属性skip.npm
将跳过npm执行。您可以通过以下方式在运行Maven时添加它:
mvn test -Dskip.npm
答案 1 :(得分:0)
据我所知,当你想测试一个包时,你不想建立一个更大的包。
您可以定义一个配置文件,准确选择要构建和测试的模块。
你有一个相关的问题:
Disable maven plugins when using a specific profile
如果它对您有所帮助,请告诉我们!