Maven的。运行测试时跳过插件执行

时间:2018-04-21 09:11:03

标签: maven pom.xml maven-plugin

pom.xmlfrontend-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时是否可以不执行插件?

2 个答案:

答案 0 :(得分:5)

现在has specific keys的frontend-maven-plugin可以禁止执行特定目标。例如,添加系统属性skip.npm将跳过npm执行。您可以通过以下方式在运行Maven时添加它:

mvn test -Dskip.npm

答案 1 :(得分:0)

你听说过maven资料吗? http://maven.apache.org/guides/introduction/introduction-to-profiles.html

据我所知,当你想测试一个包时,你不想建立一个更大的包。

您可以定义一个配置文件,准确选择要构建和测试的模块。

你有一个相关的问题:

Disable maven plugins when using a specific profile

如果它对您有所帮助,请告诉我们!