2012-07-30 35 views
1

因此,我在線教程以構建雲連接器,但我甚至無法獲取要生成的骨架! tutorial 1 tutorial 2在嘗試構建骨架Mule雲連接器時獲取錯誤..

我碰到下面的錯誤,使用由Mule Cloud Connect Development Kit

> [INFO] ------------------------------------------------------------------------ 
[INFO] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 1.170s 
[INFO] Finished at: Mon Jul 30 13:00:57 EDT 2012 
[INFO] Final Memory: 7M/122M 
[INFO] ------------------------------------------------------------------------ 
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.2:generate (default-cli) on project standalone-pom: The desired archetype does not exist (org.mule.tools:mule-cloud-connector-archetype:2.0.16) -> [Help 1] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException 

都有些什麼事情我可以做錯誤給出的創建,雲connector.bat腳本?

  • 我更新了Maven的settings.xml文件
  • 的第一個問題就是「雲服務的名稱的新連接器使用 [預設:]」我可以輸入任何東西嗎? (或者它是否必須像現有的服務?如果我正在構建一個不存在的東西?)

回答

0

它看起來像教程指向相當老的原型版本(2.0.16 )maven甚至找不到。

我建議,以取代用下面的命令生成步驟

mvn archetype:generate -DarchetypeGroupId=org.mule.tools.devkit -DarchetypeArtifactId=mule-devkit-archetype-cloud-connector -DarchetypeVersion=3.3.0 

你可以找到更多的信息here

相關問題