1

Its been almost 3 hours and I'm not able to build this. Please can anybody provide the steps. All the documents suggest to use hcatalog-src-0.5.0-incuvating.tar.gz but this is not available anywhere on internet (ad far as I've searched). Then I downloaded the branch 0.5.0 but as per the documentation http://docs.hortonworks.com/HDPDocuments/HDP1/HDP-1.2.0/ds_HCatalog/install.pdf

of version 0.5.0 you have to build l=using command

ant_home/bin/ant -Dhcatalog.version=0.5.0 -Dforrest.home=forrest_home tar  

Now the problem is that the build.xml do not have a target named 'tar'. So I just browsed the build.xml and tried the same command using target as 'package'

ant_home/bin/ant -Dhcatalog.version=0.5.0 -Dforrest.home=forrest_home package

but then its showing me error.

BUILD FAILED
C:\Users\admnilesh\Desktop\hcatalog-branch-0.5\build.xml:71: The following error
 occurred while executing this line:
C:\Users\nilesh\Desktop\hcatalog-branch-0.5\build-support\ant\deploy.xml:67:
Unable to resolve artifact: Unable to get dependency information: Unable to read
 the metadata file for artifact 'com.sun.jersey:jersey-core:jar': Cannot find pa
rent: net.java:jvnet-parent for project: com.sun.jersey:jersey-project:pom:1.9.1
 for project com.sun.jersey:jersey-project:pom:1.9.1
  com.sun.jersey:jersey-core:jar:1.9.1

from the specified remote repositories:
  apache.snapshots (http://repository.apache.org/snapshots),
  central (http://repo1.maven.org/maven2),
  glassfish-repository (http://maven.glassfish.org/content/groups/glassfish),
  datanucleus (http://www.datanucleus.org/downloads/maven2)

Path to dependency:
        1) org.apache.hcatalog:webhcat:jar:0.5.0-SNAPSHOT

Please help me out.

4

2 に答える 2

1

私たちは同じ問題を抱えており、ここ数日間、hcatalog-user メーリング リストで議論してきました。https://issues.apache.org/jira/browse/HCATALOG-601を見て、この問題に対して何が行われているかを確認できます。

ただし、簡単な要約: Jersey 1.9 は、もはや存在しないグラスフィッシュの Maven リポジトリに依存していました。jersey dep のバージョンを 1.9 から 1.14 に上げると、ビルドできるようになります。

編集 : もう 1 つ - 0.5.0 の孵化候補をリリースするためのリリース プロセスがまだ進行中であり、最新の候補は現在http://people.apache.org/~travis/に掲載されています。数日以内に一般公開されるはずです。それまでの間、hcatalog-user メーリング リストを調べてみることをお勧めします: http://incubator.apache.org/hcatalog/mailing_lists.html

于 2013-01-29T20:30:22.370 に答える