You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by da...@apache.org on 2015/09/01 21:43:59 UTC

hive git commit: HIVE-11694: Exclude hbase-metastore for hadoop-1 (Daniel Dai reviewed by Thejas Nair)

Repository: hive
Updated Branches:
  refs/heads/hbase-metastore fbbb7cf1f -> 3d170cae5


HIVE-11694: Exclude hbase-metastore for hadoop-1 (Daniel Dai reviewed by Thejas Nair)


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

Branch: refs/heads/hbase-metastore
Commit: 3d170cae5f41b0a3928117328aeaac3aefbc7cef
Parents: fbbb7cf
Author: Daniel Dai <da...@hortonworks.com>
Authored: Tue Sep 1 12:43:42 2015 -0700
Committer: Daniel Dai <da...@hortonworks.com>
Committed: Tue Sep 1 12:43:42 2015 -0700

----------------------------------------------------------------------
 metastore/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/3d170cae/metastore/pom.xml
----------------------------------------------------------------------
diff --git a/metastore/pom.xml b/metastore/pom.xml
index ccec9f1..255726c 100644
--- a/metastore/pom.xml
+++ b/metastore/pom.xml
@@ -159,6 +159,23 @@
   <profiles>
     <profile>
       <id>hadoop-1</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <version>2.3.2</version>
+            <configuration>
+              <excludes>
+                <exclude>**/hbase/**</exclude>
+              </excludes>
+              <testExcludes>
+                <exclude>**/hbase/**</exclude>
+              </testExcludes>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
       <dependencies>
         <dependency>
           <groupId>org.apache.hadoop</groupId>