无法建立mule maven项目

时间:2013-11-12 04:09:51

标签: maven jboss mule mule-studio

我在运行项目时创建了一个mule maven项目:mule应用程序与maven我收到以下错误:

无法在项目StandaloneTest上执行目标:无法解析项目com.mycompany的依赖项:StandaloneTest:mule:1.0.0-SNAPSHOT:找不到工件com.mulesoft.muleesb.modules:mule-module-xml:jar :jboss中的3.4.0(http://repository.jboss.com/

我的项目pom.xml中有mule studio生成的依赖关系

<dependency>
        <groupId>org.mule.modules</groupId>
        <artifactId>mule-module-xml</artifactId>
        <version>3.5.0-bighorn</version>
    </dependency>
    <dependency>
        <groupId>com.mulesoft.muleesb.modules</groupId>
        <artifactId>mule-module-xml</artifactId>
        <version>${mule.version}</version>
        <scope>provided</scope>
    </dependency>

我们还需要com.mulesoft.muleesb.modules.mule-moudle-xml.jar,以便在我们的流文件中有一个xml模块,因为我们已经有了一个org.mule.modules.mule-module-xml。 jar在我们的存储库中。

2 个答案:

答案 0 :(得分:0)

mule-module-xml的相应组ID是org.mule.modules。尝试删除第二个依赖项。

答案 1 :(得分:0)

尝试使用此依赖项替换两者:

<dependency>
  <groupId>org.mule.modules</groupId>
  <artifactId>mule-module-xml</artifactId>
  <version>3.4.0</version>
</dependency>

在这两个Maven存储库中的任何一个中都可以找到依赖关系:

https://repository.mulesoft.org/nexus/content/groups/public/ https://repository.mulesoft.org/nexus/content/repositories/public/

如果有效,请告诉我们。谢谢!