0

我在运行项目时创建了一个 mule maven 项目:mule application with maven 我收到以下错误:

无法在项目 StandaloneTest 上执行目标:无法解析项目 com.mycompany:StandaloneTest:mule:1.0.0-SNAPSHOT 的依赖项:找不到工件 com.mulesoft.muleesb.modules:mule-module-xml:jar:3.4。 0 在 jboss ( 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存储库。

4

2 回答 2

0

mule-module-xml 的适当组 id 是 org.mule.modules。尝试删除第二个依赖项。

于 2013-11-12T14:07:19.587 回答
0

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

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

在以下 2 个 Maven 存储库中的任何一个中都可以找到依赖项:

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

请让我们知道这是否有效。谢谢!

于 2016-06-21T20:26:28.043 回答