You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by om...@apache.org on 2018/03/21 21:27:54 UTC

hive git commit: Preparing for Storage API 2.5.0 release.

Repository: hive
Updated Branches:
  refs/heads/storage-branch-2.5 [created] a1db68c7c


Preparing for Storage API 2.5.0 release.


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/a1db68c7
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/a1db68c7
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/a1db68c7

Branch: refs/heads/storage-branch-2.5
Commit: a1db68c7c9839491240a712b019cd0cc1acd8e15
Parents: 2642000
Author: Owen O'Malley <om...@apache.org>
Authored: Wed Mar 21 14:21:17 2018 -0700
Committer: Owen O'Malley <om...@apache.org>
Committed: Wed Mar 21 14:21:17 2018 -0700

----------------------------------------------------------------------
 pom.xml             | 29 -----------------------------
 storage-api/pom.xml |  9 ++++++++-
 2 files changed, 8 insertions(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/a1db68c7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 5be30f6..0e36198 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,35 +32,6 @@
 
   <modules>
     <module>storage-api</module>
-    <module>accumulo-handler</module>
-    <module>vector-code-gen</module>
-    <module>beeline</module>
-    <module>classification</module>
-    <module>cli</module>
-    <module>common</module>
-    <module>contrib</module>
-    <module>druid-handler</module>
-    <module>hbase-handler</module>
-    <module>jdbc-handler</module>
-    <module>hcatalog</module>
-    <module>hplsql</module>
-    <module>jdbc</module>
-    <module>metastore</module>
-    <module>ql</module>
-    <module>serde</module>
-    <module>service-rpc</module>
-    <module>service</module>
-    <module>llap-common</module>
-    <module>llap-client</module>
-    <module>llap-ext-client</module>
-    <module>llap-tez</module>
-    <module>llap-server</module>
-    <module>shims</module>
-    <module>spark-client</module>
-    <module>kryo-registrator</module>
-    <module>testutils</module>
-    <module>packaging</module>
-    <module>standalone-metastore</module>
   </modules>
 
   <properties>

http://git-wip-us.apache.org/repos/asf/hive/blob/a1db68c7/storage-api/pom.xml
----------------------------------------------------------------------
diff --git a/storage-api/pom.xml b/storage-api/pom.xml
index 9ba31bf..836316f 100644
--- a/storage-api/pom.xml
+++ b/storage-api/pom.xml
@@ -25,7 +25,7 @@
 
   <groupId>org.apache.hive</groupId>
   <artifactId>hive-storage-api</artifactId>
-  <version>3.0.0-SNAPSHOT</version>
+  <version>2.5.0</version>
   <packaging>jar</packaging>
   <name>Hive Storage API</name>
 
@@ -35,6 +35,7 @@
     <guava.version>19.0</guava.version>
     <hadoop.version>3.0.0-beta1</hadoop.version>
     <junit.version>4.11</junit.version>
+    <log4j2.version>2.10.0</log4j2.version>
     <slf4j.version>1.7.10</slf4j.version>
     <maven.checkstyle.plugin.version>2.17</maven.checkstyle.plugin.version>
     <checkstyle.conf.dir>${basedir}/checkstyle/</checkstyle.conf.dir>
@@ -124,6 +125,12 @@
       <version>${commons-logging.version}</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <version>${log4j2.version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>