将参数从pom传递给Grunt任务

时间:2016-06-30 07:29:56

标签: maven gruntjs

我有'grunt-execute的Gruntfile。

 execute: {
            target: {
                options: {
                    args: ['--mode', 'package' ,
                        '-b', 'aemac/',
                        'js']
                },
                src: ['uploader.js']
            }
        }

我在我的Maven项目中使用grunt并使用frontend-maven-plugin。是否可以将参数从pom传递给args: {}对象? 我在pom中的grunt配置很简单

<execution>
    <id>grunt build</id>
    <goals>
       <goal>grunt</goal>
    </goals>
 </execution>

如何将参数传递给grunt任务?

0 个答案:

没有答案