编译Hive-3.1.2 报错
报错信息:
Failed to read artifact descriptor for org.pentaho:pentaho-aggdesigner-algorithm:jar:5.1.5-jhyde: Could not transfer artifact org.pentaho:pentaho-aggdesigner-algorithm:pom:5.1.5-jhyde from/to conjars (https://conjars.org/repo)
找不到pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
包
原因:官网地址变动新的conjars官网地址
解决办法:
修改Maven setting.xml文件
<mirrors>
<mirror>
<id>conjars</id>
<name>conjars</name>
<url>https://conjars.wensel.net/repo/</url>
<mirrorOf>conjars</mirrorOf>
</mirror>
</mirrors>
此时构建就可成功
若没有访问外网的方式
可以参考以下博客
https://blog.csdn.net/zxctime/article/details/106007508