【发布时间】:2016-06-22 04:26:28
【问题描述】:
我在运行项目时创建了一个 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 在我们的存储库中。
【问题讨论】:
标签: maven jboss mule mule-studio