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的問題?
參見https://stackoverflow.com/questions/6352208/how-to-solve-plugin-execution-not-covered-by-lifecycle-configuration-for-sprin – Tome
Eclipse不知道如何將exec-maven-plugin轉換爲Eclipse構建操作。鏈接的解決方案正在討論告訴Eclipse忽略它,並指出其他可能可用或不可用的其他可能性,具體取決於您的Eclipse版本 – Tome