我在嘗試創建一個可以在Eclipse中使用的簡單GWT + Maven項目時遇到了很多問題。下面是我在做什麼:在Eclipse中使用GWT + Maven項目
創建一個新的
gwt-maven-plugin
項目:mvn archetype:generate -q -DarchetypeGroupId=org.codehaus.mojo -DarchetypeArtifactId=gwt-maven-plugin -DarchetypeVersion=2.5.0-rc2 -DgroupId=myGroupId -DartifactId=myArtifactId -Dversion=1.0 -Dmodule=myModule
打開Eclipse中的項目:文件=>導入... =>現有Maven項目,然後選擇我剛剛創建的項目。
不過,我得到這些錯誤:
No marketplace entries found to handle gwt-maven-plugin:2.5.0-rc2:generateAsync in Eclipse. Please see Help for more information. No marketplace entries found to handle gwt-maven-plugin:2.5.0-rc2:i18n in Eclipse. Please see Help for more information.
我不明白此錯誤消息。我找到了一個related question on SO,但將建議的剪切片段添加到我的pom.xml中並沒有出現任何問題。
任何人都可以點亮一下嗎?
你試過項目→Maven→更新項目配置...?順便說一句,我不建議使用原型。請參閱http://code.google.com/p/google-web-toolkit/wiki/WorkingWithMaven –
更新項目配置並未解決問題。你鏈接的教程看起來很有希望,我會放棄它。 – del
Eclipse是否建議您針對這些錯誤「快速修復」?它應該建議你忽略它們,爲此它會在POM的'pluginManagement'部分插入相應的配置(類似於Dvd Prd的答案)。 –