Missing dependency hive-builtins causes build failure with error code 410 for Oozie

前端 未结 1 464
迷失自我
迷失自我 2021-01-29 00:27

I try to build the oozie from the sources but failed to install. I want to install oozie and eagerly waiting to work with that .I am failing at this stage : when I given the cmd

相关标签:
1条回答
  • 2021-01-29 01:05

    The Codehaus hosting platform was ended, i.e., their public Maven repository is gone, too. You should try to follow their advice and add the following to your ~/.m2/settings.xml file:

    <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>
    

    This should use a backup repository to get the missing dependency.

    I’m not sure about the repository ID that needs to be used. I have used the one from the Oozie 3.3.2 POM above.

    0 讨论(0)
提交回复
热议问题