Repository: oozie Updated Branches: refs/heads/master b995d9fd5 -> 8c11f9c7a
OOZIE-2236 Need to package hive-hcatalog-server-extensions.jar in the hcatalog sharelib (venkatnrangan via bzhang) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/8c11f9c7 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/8c11f9c7 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/8c11f9c7 Branch: refs/heads/master Commit: 8c11f9c7ae55ce831981439611676824198bdb42 Parents: b995d9f Author: Bowen Zhang <[email protected]> Authored: Mon May 18 14:39:57 2015 -0700 Committer: Bowen Zhang <[email protected]> Committed: Mon May 18 14:43:21 2015 -0700 ---------------------------------------------------------------------- release-log.txt | 1 + sharelib/hcatalog/pom.xml | 45 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/8c11f9c7/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index d69c4fe..e8df674 100644 --- a/release-log.txt +++ b/release-log.txt @@ -2,6 +2,7 @@ -- Oozie 4.2.0 release (unreleased) +OOZIE-2236 Need to package hive-hcatalog-server-extensions.jar in the hcatalog sharelib (venkatnrangan via bzhang) OOZIE-2232 Oozie should invalidate bulk write command when "-filter" is missing (venkatnrangan via bzhang) OOZIE-2224 Add example worklfow.xml for hive in secure mode (venkatnrangan via bzhang) OOZIE-2227 PartitionDependencyManagerService keeps on purging delete coord actions (puru) http://git-wip-us.apache.org/repos/asf/oozie/blob/8c11f9c7/sharelib/hcatalog/pom.xml ---------------------------------------------------------------------- diff --git a/sharelib/hcatalog/pom.xml b/sharelib/hcatalog/pom.xml index 41e7b71..2b0c504 100644 --- a/sharelib/hcatalog/pom.xml +++ b/sharelib/hcatalog/pom.xml @@ -207,6 +207,51 @@ </dependency> <dependency> + <groupId>org.apache.hive.hcatalog</groupId> + <artifactId>hive-hcatalog-server-extensions</artifactId> + <version>${hive.version}</version> + <scope>compile</scope> + <exclusions> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>kahadb</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activeio-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq.protobuf</groupId> + <artifactId>activemq-protobuf</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_1.1_spec</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-j2ee-management_1.1_spec</artifactId> + </exclusion> + <exclusion> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.core</artifactId> + </exclusion> + <exclusion> + <groupId>javax.jms</groupId> + <artifactId>jms</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> <scope>provided</scope>
