我未能執行目標org.apache.maven-dependency-plugin:2.8:tree
。嘗試使用JSF創建項目時出現「執行目標失敗」錯誤
我在我的CMD命令使用:
mvn archetype:create-DgroupId=com.tutorialspoint.test -DartifactId=helloworld -DarchetypeArtifactId=maven-archetype-webapp
我跟很多的解決方案,但沒有發現這方面的任何解決方案。
我未能執行目標org.apache.maven-dependency-plugin:2.8:tree
。嘗試使用JSF創建項目時出現「執行目標失敗」錯誤
我在我的CMD命令使用:
mvn archetype:create-DgroupId=com.tutorialspoint.test -DartifactId=helloworld -DarchetypeArtifactId=maven-archetype-webapp
我跟很多的解決方案,但沒有發現這方面的任何解決方案。
解決的問題使用下面的命令用引號:
mvn archetype:generate "-DarchetypeGroupId=org.apache.maven.archetypes" "-DgroupId=com.tutorialspoint.test" "-DartifactId=helloworld"
爲什麼它在沒有qoutes的我的michine上工作? – Mufanu
我認爲這兩個命令都可以工作(帶或不帶引號)。我發佈了這個答案,因爲這對OP有效。 – LittlePanda
的Maven找不到目標CREATE-DgroupId = com.tutorialspoint.test
嘗試後把空間打造
mvn archetype:create -DgroupId=com.tutorialspoint.test -DartifactId=helloworld -DarchetypeArtifactId=maven-archetype-webapp
我強烈懷疑日誌中有更多細節 - 或者您可以增加詳細程度以確保日誌中包含*更多詳細信息... –
我在我的cmd中添加了輸出。請看看 –
您是否考慮過使用-e開關重新運行Maven?或者-X開關? – Teepeemm