Repository: incubator-hivemall Updated Branches: refs/heads/master f52b72809 -> 7e17c0e73
Fixed to include relocated HCatalog in hivemall-all.jar Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/7e17c0e7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/7e17c0e7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/7e17c0e7 Branch: refs/heads/master Commit: 7e17c0e731dac4dd48fe0fdc36b4b06c04ca53c5 Parents: f52b728 Author: Makoto Yui <[email protected]> Authored: Thu Jun 14 14:45:26 2018 +0900 Committer: Makoto Yui <[email protected]> Committed: Thu Jun 14 14:45:26 2018 +0900 ---------------------------------------------------------------------- dist/pom.xml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7e17c0e7/dist/pom.xml ---------------------------------------------------------------------- diff --git a/dist/pom.xml b/dist/pom.xml index 4f8a49c..cdbfcfe 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -54,13 +54,18 @@ <version>${project.version}</version> <scope>compile</scope> </dependency> - <!-- Jackson --> + <!-- for Jason encoding/decoding --> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> <version>1.8.3</version> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.apache.hive.hcatalog</groupId> + <artifactId>hive-hcatalog-core</artifactId> + <scope>compile</scope> + </dependency> </dependencies> <build> @@ -120,8 +125,9 @@ <include>org.apache.hivemall:hivemall-xgboost</include> <include>io.github.myui:xgboost4j</include> <include>com.esotericsoftware.kryo:kryo</include> - <!-- Jackson --> + <!-- for Jason encoding/decoding --> <include>org.codehaus.jackson:jackson-core-asl</include> + <include>org.apache.hive.hcatalog:hive-hcatalog-core</include> </includes> <excludes> <exclude>org.apache.hivemall:hivemall-all</exclude> @@ -132,6 +138,10 @@ <pattern>org.codehaus.jackson</pattern> <shadedPattern>hivemall.codehaus.jackson</shadedPattern> </relocation> + <relocation> + <pattern>org.apache.hive.hcatalog</pattern> + <shadedPattern>hivemall.hcatalog</shadedPattern> + </relocation> </relocations> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
