Skip to content

Commit 2483c1e

Browse files
jongyoulpwendell
authored andcommitted
[SPARK-3955] Different versions between jackson-mapper-asl and jackson-c...
...ore-asl - set the same version to jackson-mapper-asl and jackson-core-asl - It's related with #2818 - coded a same patch from a latest master Author: Jongyoul Lee <[email protected]> Closes #3716 from jongyoul/SPARK-3955 and squashes the following commits: efa29aa [Jongyoul Lee] [SPARK-3955] Different versions between jackson-mapper-asl and jackson-core-asl - set the same version to jackson-mapper-asl and jackson-core-asl
1 parent 82bf4be commit 2483c1e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@
149149
<scala.binary.version>2.10</scala.binary.version>
150150
<jline.version>${scala.version}</jline.version>
151151
<jline.groupid>org.scala-lang</jline.groupid>
152+
<jackson.version>1.8.8</jackson.version>
152153
</properties>
153154

154155
<repositories>
@@ -819,10 +820,15 @@
819820
</exclusions>
820821
</dependency>
821822
<dependency>
822-
<!-- Matches the version of jackson-core-asl pulled in by avro -->
823+
<!-- Matches the versions of jackson-mapper-asl and jackson-core-asl with avro -->
823824
<groupId>org.codehaus.jackson</groupId>
824825
<artifactId>jackson-mapper-asl</artifactId>
825-
<version>1.8.8</version>
826+
<version>${jackson.version}</version>
827+
</dependency>
828+
<dependency>
829+
<groupId>org.codehaus.jackson</groupId>
830+
<artifactId>jackson-mapper-asl</artifactId>
831+
<version>${jackson.version}</version>
826832
</dependency>
827833
</dependencies>
828834
</dependencyManagement>

0 commit comments

Comments
 (0)