我正在嘗試使用maven-warpath-plugin available here。但我不斷收到我的pom.xml文件中的錯誤,內容如下:插件錯誤:執行不在生命週期配置中
Plugin execution not covered by lifecycle configuration: org.appfuse.plugins:maven-warpath-plugin:2.1.0:add-classes (execution: default, phase: generate-sources)
如何解決此問題?這裏是我的插件pom.xml代碼片段:
<plugin>
<groupId>org.appfuse.plugins</groupId>
<artifactId>maven-warpath-plugin</artifactId>
<version>2.1.0</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>add-classes</goal>
</goals>
</execution>
</executions>
</plugin>
Eclipse爲我提供了一個quickfox提示「發現新的m2e連接器」來解決此錯誤。我已經安裝了大部分似乎適用的連接器,但錯誤仍然存在。任何想法,我可以使這項工作?
@FrVaBe爲此做了第二次eclipse quickfix(在eclipse構建中,將pom.xml中的目標add-classes標記爲忽略)。可以影響我的Web應用程序執行? –
@Amira Manai它不應該影響執行,因爲它對maven構建沒有影響。 – FrVaBe
就我所見,在我的測試中,這種方法是直接從Maven構建中省略maven-warpath-plugin,不是嗎?我的意思是,我希望在我的主戰爭中獲得一個' warpath '神器作爲依賴,它不能被識別。 –