2009-07-01 15 views

答えて

14

実際には、これらのケースではExec Maven Pluginが存在します。

+0

私の問題を解決するので、答えが選ばれました。しかし疑問に思ったのは、Javaのタスクだけではなく、どんなコマンドについても取っていました。 – Max

7

は詳細ネイティブ

+2

彼は私がすでに提供したページからそのリンクを見つけることができると思います – jitter

4

ないためexec-maven-pluginを参照してください。

ただし、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> 
関連する問題