Repository: spark Updated Branches: refs/heads/branch-1.3 b8f9c0016 -> 59fb5c746
SPARK-5607: Update to Kryo 2.24.0 to avoid including objenesis 1.2. Our existing Kryo version actually embeds objenesis 1.2 classes in its jar, causing dependency conflicts during tests. This updates us to Kryo 2.24.0 (which was changed to not embed objenesis) to avoid this behavior. See the JIRA for more detail. Author: Patrick Wendell <[email protected]> Closes #4383 from pwendell/SPARK-5607 and squashes the following commits: c3b8d27 [Patrick Wendell] SPARK-5607: Update to Kryo 2.24.0 to avoid including objenesis 1.2. (cherry picked from commit c23ac03c8c27e840498a192b088e00b27076765f) Signed-off-by: Patrick Wendell <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/59fb5c74 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/59fb5c74 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/59fb5c74 Branch: refs/heads/branch-1.3 Commit: 59fb5c7462bea7862506cc81436737a7f810e77d Parents: b8f9c00 Author: Patrick Wendell <[email protected]> Authored: Wed Feb 4 22:39:44 2015 -0800 Committer: Patrick Wendell <[email protected]> Committed: Wed Feb 4 22:39:50 2015 -0800 ---------------------------------------------------------------------- pom.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/59fb5c74/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 55d82ad..d324b5f 100644 --- a/pom.xml +++ b/pom.xml @@ -136,6 +136,7 @@ <jblas.version>1.2.3</jblas.version> <jetty.version>8.1.14.v20131031</jetty.version> <chill.version>0.5.0</chill.version> + <kryo.version>2.24.0</kryo.version> <ivy.version>2.4.0</ivy.version> <oro.version>2.0.8</oro.version> <codahale.metrics.version>3.1.0</codahale.metrics.version> @@ -340,7 +341,13 @@ </exclusion> </exclusions> </dependency> - + <!-- Bump kryo version (included via chill) due to SPARK-5607 --> + <dependency> + <groupId>com.esotericsoftware.kryo</groupId> + <artifactId>kryo</artifactId> + <version>${kryo.version}</version> + </dependency> + <!-- Shaded deps marked as provided. These are promoted to compile scope in the modules where we want the shaded classes to appear in the associated jar. --> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
