我得到了ant
的解决方案但是如何通过maven
执行DOS命令?
我正在gruntjs
构建我的脚本,并且运行我使用节点命令提示符,但我想通过maven执行该命令。任何的想法???
答案 0 :(得分:1)
这可能是Maven's Exec Plugin的用例。
在插件中试用exec:exec
目标。
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>Script Run</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/<relativepathinyourproject>/yourscript.bat</executable>
</configuration>
</execution>
</executions>
</plugin>