Skip to content

Commit a93c94f

Browse files
committed
Exclude jackson-mapper-asl from hadoop client since it has a lower version than spark's expected version.
1 parent a8a923c commit a93c94f

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

core/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@
7474
<groupId>javax.servlet</groupId>
7575
<artifactId>servlet-api</artifactId>
7676
</exclusion>
77+
<exclusion>
78+
<groupId>org.codehaus.jackson</groupId>
79+
<artifactId>jackson-mapper-asl</artifactId>
80+
</exclusion>
7781
</exclusions>
7882
</dependency>
7983
<dependency>

launcher/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@
7373
<groupId>org.apache.hadoop</groupId>
7474
<artifactId>hadoop-client</artifactId>
7575
<scope>test</scope>
76+
<exclusions>
77+
<exclusion>
78+
<groupId>org.codehaus.jackson</groupId>
79+
<artifactId>jackson-mapper-asl</artifactId>
80+
</exclusion>
81+
</exclusions>
7682
</dependency>
7783
</dependencies>
7884

0 commit comments

Comments
 (0)