You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by su...@apache.org on 2012/10/04 08:13:59 UTC

svn commit: r1393928 - in /hadoop/common/branches/branch-1-win: CHANGES.branch-1-win.txt ivy/hadoop-core-pom-template.xml

Author: suresh
Date: Thu Oct  4 06:13:59 2012
New Revision: 1393928

URL: http://svn.apache.org/viewvc?rev=1393928&view=rev
Log:
HADOOP-8880. Missing jersey jars as dependency in the pom causes hive tests to fail. Contributed by Giridharan Kesavan.

Modified:
    hadoop/common/branches/branch-1-win/CHANGES.branch-1-win.txt
    hadoop/common/branches/branch-1-win/ivy/hadoop-core-pom-template.xml

Modified: hadoop/common/branches/branch-1-win/CHANGES.branch-1-win.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1-win/CHANGES.branch-1-win.txt?rev=1393928&r1=1393927&r2=1393928&view=diff
==============================================================================
--- hadoop/common/branches/branch-1-win/CHANGES.branch-1-win.txt (original)
+++ hadoop/common/branches/branch-1-win/CHANGES.branch-1-win.txt Thu Oct  4 06:13:59 2012
@@ -149,3 +149,6 @@ BUG FIXES
 
     HADOOP-8879. TestUserGroupInformation fails on Windows when run as
     Administrator. (Bikas Saha via suresh)
+
+    HADOOP-8880. Missing jersey jars as dependency in the pom causes 
+    hive tests to fail. (gkesavan via suresh)

Modified: hadoop/common/branches/branch-1-win/ivy/hadoop-core-pom-template.xml
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1-win/ivy/hadoop-core-pom-template.xml?rev=1393928&r1=1393927&r2=1393928&view=diff
==============================================================================
--- hadoop/common/branches/branch-1-win/ivy/hadoop-core-pom-template.xml (original)
+++ hadoop/common/branches/branch-1-win/ivy/hadoop-core-pom-template.xml Thu Oct  4 06:13:59 2012
@@ -34,6 +34,21 @@
       <version>0.52</version>
     </dependency>
     <dependency>
+       <groupId>com.sun.jersey</groupId>
+       <artifactId>jersey-core</artifactId>
+      <version>1.8</version>
+    </dependency>
+     <dependency>
+       <groupId>com.sun.jersey</groupId>
+       <artifactId>jersey-json</artifactId>
+      <version>1.8</version>
+    </dependency>
+    <dependency>
+       <groupId>com.sun.jersey</groupId>
+       <artifactId>jersey-server</artifactId>
+      <version>1.8</version>
+    </dependency>
+    <dependency>
       <groupId>commons-httpclient</groupId>
       <artifactId>commons-httpclient</artifactId>
       <version>3.0.1</version>