Failure to transfer org.pentaho:pentaho-aggdesigner-algorithm:pom:5.1.5-jhyd
maven导入依赖包的时候报错:Failure to find org.pentaho:pentaho-aggdesigner-algorithm:pom:5.1.5-jhyde in http://maven.aliyun.com意思是我们maven配置的阿里云仓库没有这个依赖.从网上看了多篇帖子,在maven的仓库添加miroor源,添加spring-io依赖等,均没有解决这个问题.最后在po
·
maven导入依赖包的时候报错:
Failure to find org.pentaho:pentaho-aggdesigner-algorithm:pom:5.1.5-jhyde in http://maven.aliyun.com
意思是我们maven配置的阿里云仓库没有这个依赖.
从网上看了多篇帖子,在maven的仓库添加miroor源,添加spring-io依赖等,均没有解决这个问题.
最后在pom.xml添加下面的依赖才解决了问题:
<repositories>
<repository>
<id>spring</id>
<url>https://maven.aliyun.com/repository/spring</url>
</repository>
</repositories>
更多推荐
所有评论(0)