我在运行项目时创建了一个 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存储库。