2012-07-30 56 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

相关问题