maven可以运行命令行指令吗?

时间:2009-07-01 14:29:37

标签: maven-2

我们可以将一些本机OS命令绑定到maven目标和/或阶段吗?

3 个答案:

答案 0 :(得分:15)

实际上这些案件有Exec Maven Plugin

答案 1 :(得分:7)

有关详细信息,请参阅exec-maven-plugin

答案 2 :(得分:4)

不是原生的。

但是,通过使用AntRun plugin,您可以指定在构建期间执行OS命令的Ant任务(使用Exec)。

<project>
  ...
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <phase> <!-- a lifecycle phase --> </phase>
            <configuration>
              <tasks>

                <!--
                  Place any Ant task here. You can add anything
                  you can add between <target> and </target> in a
                  build.xml.
                -->

              </tasks>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  ...
</project>