2017-09-26 13 views
0

Maven Execプラグインで少し苦労しています。 2つの別々のmvnコマンドをプラグインを使用して実行したいので、すべてのコマンドを実行するためにmvn exec:execを実行する必要があります。Maven Execプラグインを使用した複数のコマンド

次の2つのコマンドを別々にうまく機能:

<plugin> 
    <groupId>org.codehaus.mojo</groupId> 
    <artifactId>exec-maven-plugin</artifactId> 
    <version>1.6.0</version> 
    <configuration> 
     <executable>mvn</executable> 
     <arguments> 
      <argument>clean</argument> 
     </arguments> 
    </configuration> 
</plugin> 

<plugin> 
    <groupId>org.codehaus.mojo</groupId> 
    <artifactId>exec-maven-plugin</artifactId> 
    <version>1.6.0</version> 
    <configuration> 
     <executable>mvn</executable> 
     <arguments> 
      <argument>package</argument> 
     </arguments> 
    </configuration> 
</plugin> 

を、これは1つのコマンドでそれらを実行するために、両方を結合する私の試みです:

残念ながら、私は今 を実行したとき
<plugin> 
    <groupId>org.codehaus.mojo</groupId> 
    <artifactId>exec-maven-plugin</artifactId> 
    <version>1.6.0</version> 

    <executions> 
     <execution> 
      <id>id1</id> 
      <phase>package</phase> 
      <goals> 
       <goal>exec</goal> 
      </goals> 
      <configuration> 
       <executable>mvn</executable> 
       <arguments> 
        <argument>clean</argument> 
       </arguments> 
      </configuration> 
     </execution> 

     <execution> 
      <id>id2</id> 
      <phase>package</phase> 
      <goals> 
       <goal>exec</goal> 
      </goals> 
      <configuration> 
       <executable>mvn</executable> 
       <arguments> 
        <argument>package</argument> 
       </arguments> 
      </configuration> 
     </execution> 
    </executions> 

</plugin> 

mvn exec:exec次のエラーメッセージが表示されます:

[INFO] Scanning for projects... 
[INFO] 
[INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1 
[INFO]                   
[INFO] ------------------------------------------------------------------------ 
[INFO] Building MyProjet 0.0.1-SNAPSHOT 
[INFO] ------------------------------------------------------------------------ 
[INFO] 
[INFO] --- exec-maven-plugin:1.6.0:exec (default-cli) @ MyProject --- 
[INFO] ------------------------------------------------------------------------ 
[INFO] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 0.787 s 
[INFO] Finished at: 2017-09-26T09:56:57+01:00 
[INFO] Final Memory: 6M/15M 
[INFO] ------------------------------------------------------------------------ 
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:exec (default-cli) on project MyProject: The parameter 'executable' is missing or invalid -> [Help 1] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException 
+0

':exec' =>あなたはあなたの2つの実行をバインドとしてあなたは'package'実行する必要がありますその段階。 – Tome

答えて

1

mvn exec:execをコマンドラインで実行すると、<id>default-cli<execution>が実行されます。これは、<id>default-cli</id>で実行がなく、POMに<executable>が設定されているため、エラーメッセージを説明しています。

問題を解決するには、Guide to Configuring Plug-insをご覧ください。それはdefault-cli以外<id>とコマンドラインからゴールを実行する方法について説明します。

私は今MVN execを実行
mvn exec:[email protected] exec:[email protected] 
関連する問題