我正在尝试使用Mule Server 3.7.0 EE
与Maven构建一个mule应用程序。
我在尝试将Data-weave Transformer
添加到我的应用时错误了。
我在pom.xml
文件中添加了这种依赖:
<dependency>
<groupId>com.mulesoft.weave</groupId>
<artifactId>mule-plugin-weave_2.11</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
但是我收到了这个错误:
[ERROR] Failed to execute goal on project project370: Could not resolve dependencies for project com.test:project370:mule:1.0.0-SNAPSHOT: Failure to find com.mulesoft.weave:mule-plugin-weave_2.11:jar:3.7.0 in http://repo1.maven.org/maven2/ was cached in the local repository, resolution will not be reattempted until the update interval of Central has elapsed or updates are forced -> [Help 1]
任何想法如何解决?
答案 0 :(得分:2)
尝试执行mvn install -U
,其中-U
会强制更新maven依赖项。
如果您正在使用eclipse的maven m2插件,您可以右键单击您的项目Maven -> Update Project
,确保&#34;强制更新快照/版本&#34;已启用,然后单击“确定”。
另请查看this link以获取有关正确配置存储库的文档。