Repository: beam Updated Branches: refs/heads/master b2d300858 -> 420367088
Add jackson specific version + shade only relocate classes Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/224f5208 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/224f5208 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/224f5208 Branch: refs/heads/master Commit: 224f5208efc14862ddba8da25523bcb449fd5e06 Parents: b2d3008 Author: ksalant <[email protected]> Authored: Thu Jan 19 17:34:44 2017 +0200 Committer: Sela <[email protected]> Committed: Fri Jan 20 00:04:40 2017 +0200 ---------------------------------------------------------------------- runners/spark/pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/224f5208/runners/spark/pom.xml ---------------------------------------------------------------------- diff --git a/runners/spark/pom.xml b/runners/spark/pom.xml index 84e92fe..196b5bb 100644 --- a/runners/spark/pom.xml +++ b/runners/spark/pom.xml @@ -37,6 +37,7 @@ <spark.version>1.6.3</spark.version> <hadoop.version>2.2.0</hadoop.version> <kafka.version>0.9.0.1</kafka.version> + <jackson.version>2.4.4</jackson.version> <dropwizard.metrics.version>3.1.2</dropwizard.metrics.version> </properties> @@ -157,14 +158,17 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> + <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> + <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> + <version>${jackson.version}</version> </dependency> <dependency> <groupId>org.apache.avro</groupId> @@ -368,6 +372,11 @@ <goal>shade</goal> </goals> <configuration> + <artifactSet> + <includes> + <include>com.google.guava:guava</include> + </includes> + </artifactSet> <relocations> <!-- relocate Guava used by Beam (v18) since it conflicts with version used by Hadoop (v11) -->
