我正在尝试构建从这里下载的Oozie 4.2.0:http://ftp.cixug.es/apache/oozie/4.2.0/oozie-4.2.0.tar.gz
启动构建后
bin/mkdistro.sh -DskipTests
我收到此错误:
[ERROR] Failed to execute goal on project oozie-core: Could not resolve dependencies for project org.apache.oozie:oozie-core:jar:4.2.0: Could not transfer artifact org.apache.hbase:hbase:jar:1.1.1 from/to Codehaus repository (http://repository.codehaus.org/): Unknown host repository.codehaus.org
根据我在互联网上看到的内容,代码库存储库不再可用。没有它可以建立Oozie吗?
答案 0 :(得分:9)
为了帮助人们在将来看到这个问题,您可以通过使用其他来源备份此回购源来解决此问题
Codehaus托管平台已经结束,即他们的公共Maven存储库也已消失。您应该尝试遵循他们的建议并将以下内容添加到〜/ .m2 / settings.xml文件中:
<repositories>
<repository>
<id>Codehaus repository</id>
<name>codehaus-mule-repo</name>
<url>https://repository-master.mulesoft.org/nexus/content/groups/public/
</url>
<layout>default</layout>
</repository>
</repositories>
这应该使用备份存储库来获取缺少的依赖项。
来源:Missing dependency hive-builtins causes build failure with error code 410 for Oozie