2015-04-23 146 views
3

我未能執行目標org.apache.maven-dependency-plugin:2.8:tree嘗試使用JSF創建項目時出現「執行目標失敗」錯誤

我在我的CMD命令使用:

mvn archetype:create-DgroupId=com.tutorialspoint.test -DartifactId=helloworld -DarchetypeArtifactId=maven-archetype-webapp 

我跟很多的解決方案,但沒有發現這方面的任何解決方案。

enter image description here

+0

我強烈懷疑日誌中有更多細節 - 或者您可以增加詳細程度以確保日誌中包含*更多詳細信息... –

+0

我在我的cmd中添加了輸出。請看看 –

+0

您是否考慮過使用-e開關重新運行Maven?或者-X開關? – Teepeemm

回答

1

解決的問題使用下面的命令用引號:

mvn archetype:generate "-DarchetypeGroupId=org.apache.maven.archetypes" "-DgroupId=com.tutorialspoint.test" "-DartifactId=helloworld" 
+0

爲什麼它在沒有qoutes的我的michine上工作? – Mufanu

+0

我認爲這兩個命令都可以工作(帶或不帶引號)。我發佈了這個答案,因爲這對OP有效。 – LittlePanda

1

的Maven找不到目標CREATE-DgroupId = com.tutorialspoint.test

嘗試後把空間打造

mvn archetype:create -DgroupId=com.tutorialspoint.test -DartifactId=helloworld -DarchetypeArtifactId=maven-archetype-webapp 
+0

我已經給出。它不起作用 –

+1

它適用於我的機器。用空格顯示輸出 – Mufanu

+0

與屏幕截圖中顯示的 –

相關問題