maven-frontend-plugin使用系统节点

时间:2016-02-25 21:08:04

标签: node.js maven plugins gulp

它可以只使用系统中安装的节点和npm通过插件执行gulp,grunt,npm,bower任务而不安装节点和npm吗?

  <build>
    <plugins>
        <plugin>
            <groupId>com.github.eirslett</groupId>
            <artifactId>frontend-maven-plugin</artifactId>
            <!-- NB! Set <version> to the latest released version of frontend-maven-plugin, like in README.md -->
            <version>@project.version@</version>

            <executions>

                <!-- <execution>
                    <id>install node and npm</id>
                    <goals>
                        <goal>install-node-and-npm</goal>
                    </goals>
                    <configuration>
                        <nodeVersion>v0.12.2</nodeVersion>
                        <npmVersion>2.7.6</npmVersion>
                    </configuration>
                </execution>-->

                <execution>
                    <id>grunt build</id>
                    <goals>
                        <goal>grunt</goal>
                    </goals>
                    <configuration>
                        <arguments>--no-color</arguments>
                    </configuration>
                </execution>

            </executions>
        </plugin>
    </plugins>

1 个答案:

答案 0 :(得分:0)

根据作者对此问题的评论,看起来不像:

https://github.com/eirslett/frontend-maven-plugin/issues/277

Maven-exec-plugin可能有你需要的东西。