使用maven安装grunt

时间:2014-03-05 09:17:58

标签: maven gruntjs

我坚持使用maven进行构建和编译,但现在引入JavaScript构建和自动化提供了一个有趣的挑战,我们可以使用maven来安装Grunt吗?

我搜索过并发现了很多pom.xml examplesexample正在运行grunt和yoeman等等但是没有用于安装grunt

类似的东西:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.2.1</version>
    <executions>
        <execution>
            <id>Install Grunt</id>
            <phase>prepare-package</phase>
            <goals>
                <goal>exec</goal>
            </goals>
            <configuration>
                <executable>grunt</executable>
                <arguments>
                    <argument>install</argument>
                </arguments>
            </configuration>
        </execution>
    </executions>
</plugin>

1 个答案:

答案 0 :(得分:0)

对不起,这是一个非常晚的答案......通过使用前端maven插件,您可以安装&#34;将它放在package.json中咕噜咕噜。然后,npm将为您下载。 (就像在示例项目中一样)