From 5c8edfc4a8864f4091998901bbca062cd8466b6f Mon Sep 17 00:00:00 2001 From: Sean Owen <sowen@cloudera.com> Date: Thu, 13 Jul 2017 10:41:19 -0700 Subject: [PATCH] [SPARK-15526][MLLIB] Shade JPMML ## What changes were proposed in this pull request? Shade JPMML classes (`org.jpmml.**`) and related PMML model classes (`org.dmg.pmml.**`). This insulates downstream users from the version of JPMML in Spark, allows us to upgrade more freely, and allows downstream users to use a different version. JPMML minor releases are not generally forwards/backwards compatible. ## How was this patch tested? Existing tests Author: Sean Owen <sowen@cloudera.com> Closes #18584 from srowen/SPARK-15526. --- pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pom.xml b/pom.xml index 1e51ddd636..11cd028c99 100644 --- a/pom.xml +++ b/pom.xml @@ -2363,6 +2363,7 @@ <include>org.eclipse.jetty:jetty-util</include> <include>org.eclipse.jetty:jetty-server</include> <include>com.google.guava:guava</include> + <include>org.jpmml:*</include> </includes> </artifactSet> <relocations> @@ -2377,6 +2378,14 @@ <pattern>com.google.common</pattern> <shadedPattern>${spark.shade.packageName}.guava</shadedPattern> </relocation> + <relocation> + <pattern>org.dmg.pmml</pattern> + <shadedPattern>${spark.shade.packageName}.dmg.pmml</shadedPattern> + </relocation> + <relocation> + <pattern>org.jpmml</pattern> + <shadedPattern>${spark.shade.packageName}.jpmml</shadedPattern> + </relocation> </relocations> </configuration> <executions> -- GitLab