0

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

4

1 回答 1

1

这可能是Maven 的 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>
于 2012-12-13T14:17:51.570 回答