Repository: oozie Updated Branches: refs/heads/branch-4.2 b4ad51002 -> ce3cc4b6c
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/ce3cc4b6 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/ce3cc4b6 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/ce3cc4b6 Branch: refs/heads/branch-4.2 Commit: ce3cc4b6ce6dc08250ec59612d23414eccb54666 Parents: b4ad510 Author: Bowen Zhang <[email protected]> Authored: Mon May 18 14:44:56 2015 -0700 Committer: Bowen Zhang <[email protected]> Committed: Mon May 18 14:47:15 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/ce3cc4b6/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index bf4818a..25ee99c 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- 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/ce3cc4b6/sharelib/hcatalog/pom.xml ---------------------------------------------------------------------- diff --git a/sharelib/hcatalog/pom.xml b/sharelib/hcatalog/pom.xml index 823df66..2c064b1 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>
