2017-06-02 84 views
0

我使用maven將角度應用程序與java結合在一起。 POM的部分看起來像這樣如何解決生命週期配置中未包含的插件執行:org.codehaus.mojo:exec-maven-plugin:1.5.0:exec?

<plugin> 
      <groupId>org.codehaus.mojo</groupId> 
      <artifactId>exec-maven-plugin</artifactId> 
      <version>1.5.0</version> 
      <executions> 
       <execution> 
        <id>exec-npm-install</id> 
        <phase>generate-sources</phase> 
        <configuration> 
         <workingDirectory>${project.basedir}/src/main/angular-app</workingDirectory> 
         <executable>npm.cmd</executable> 
         <arguments> 
          <argument>install</argument> 
         </arguments> 
        </configuration> 
        <goals> 
         <goal>exec</goal> 
        </goals> 
       </execution> 
       <execution> 
        <id>exec-npm-ng-build</id> 
        <phase>generate-sources</phase> 
        <configuration> 
         <workingDirectory>${project.basedir}/src/main/angular-app</workingDirectory> 
         <executable>ng.cmd</executable> 
         <arguments> 
          <argument>build</argument> 
          <argument>--base-href=/testangularmaven/src/main/webapp/angular_build/</argument> 
         </arguments> 
        </configuration> 
        <goals> 
         <goal>exec</goal> 
        </goals> 

       </execution> 

      </executions> 
     </plugin>  

MVN包裝運作良好,並計劃在戰爭文件編譯的,但是Eclipse說,POM是不正確的。解決方案使用標籤pluginManagement不匹配,因爲它不會執行命令。 如何解決eclipse的問題?

+0

參見https://stackoverflow.com/questions/6352208/how-to-solve-plugin-execution-not-covered-by-lifecycle-configuration-for-sprin – Tome

+0

- pligin管理在mycase中沒有解決,因爲當你使用它的時候命令將不會被執行,我讀過這篇文章並嘗試了一些解決方案。你真的推薦什麼解決方案? – Andrey

+0

Eclipse不知道如何將exec-maven-plugin轉換爲Eclipse構建操作。鏈接的解決方案正在討論告訴Eclipse忽略它,並指出其他可能可用或不可用的其他可能性,具體取決於您的Eclipse版本 – Tome

回答

0

解決通過映射

<?xml version="1.0" encoding="UTF-8"?> 
<lifecycleMappingMetadata> 
    <pluginExecutions> 
     <pluginExecution> 
      <pluginExecutionFilter> 
       <groupId>org.codehaus.mojo</groupId> 
       <artifactId>exec-maven-plugin</artifactId> 
       <versionRange>[1.5.0,)</versionRange> 
       <goals> 
        <goal>exec</goal> 
       </goals> 
      </pluginExecutionFilter> 
      <action> 
       <execute /> 
      </action> 
     </pluginExecution> 
    </pluginExecutions> 
</lifecycleMappingMetadata> 
相關問題