如何通过maven执行DOS命令?

时间:2012-12-13 12:32:04

标签: node.js maven build dos gruntjs

我得到了ant的解决方案但是如何通过maven执行DOS命令? 我正在gruntjs构建我的脚本,并且运行我使用节点命令提示符,但我想通过maven执行该命令。任何的想法???

1 个答案:

答案 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>