File tree 6 files changed +36
-12
lines changed
6 files changed +36
-12
lines changed Original file line number Diff line number Diff line change @@ -368,6 +368,7 @@ org.eclipse.jetty:jetty-servlets
368
368
org.eclipse.jetty:jetty-util
369
369
org.eclipse.jetty:jetty-webapp
370
370
org.eclipse.jetty:jetty-xml
371
+ org.scala-lang.modules:scala-xml_2.12
371
372
372
373
core/src/main/java/org/apache/spark/util/collection/TimSort.java
373
374
core/src/main/resources/org/apache/spark/ui/static/bootstrap*
@@ -412,7 +413,6 @@ org.scala-lang:scala-compiler
412
413
org.scala-lang:scala-library
413
414
org.scala-lang:scala-reflect
414
415
org.scala-lang.modules:scala-parser-combinators_2.12
415
- org.scala-lang.modules:scala-xml_2.12
416
416
org.fusesource.leveldbjni:leveldbjni-all
417
417
net.sourceforge.f2j:arpack_combined_all
418
418
xmlenc:xmlenc
Original file line number Diff line number Diff line change @@ -1163,3 +1163,18 @@ Copyright 2014 The Apache Software Foundation
1163
1163
1164
1164
Apache Mahout (http://mahout.apache.org/)
1165
1165
Copyright 2014 The Apache Software Foundation
1166
+
1167
+ scala-xml
1168
+ Copyright (c) 2002-2019 EPFL
1169
+ Copyright (c) 2011-2019 Lightbend, Inc.
1170
+
1171
+ scala-xml includes software developed at
1172
+ LAMP/EPFL (https://lamp.epfl.ch/) and
1173
+ Lightbend, Inc. (https://www.lightbend.com/).
1174
+
1175
+ Licensed under the Apache License, Version 2.0 (the "License").
1176
+ Unless required by applicable law or agreed to in writing, software
1177
+ distributed under the License is distributed on an "AS IS" BASIS,
1178
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1179
+ See the License for the specific language governing permissions and
1180
+ limitations under the License.
Original file line number Diff line number Diff line change 220
220
<groupId >commons-net</groupId >
221
221
<artifactId >commons-net</artifactId >
222
222
</dependency >
223
+ <dependency >
224
+ <groupId >org.scala-lang.modules</groupId >
225
+ <artifactId >scala-xml_${scala.binary.version}</artifactId >
226
+ </dependency >
223
227
<dependency >
224
228
<groupId >org.scala-lang</groupId >
225
229
<artifactId >scala-library</artifactId >
Original file line number Diff line number Diff line change @@ -121,10 +121,10 @@ jline-2.14.6.jar
121
121
joda-time-2.9.3.jar
122
122
jodd-core-3.5.2.jar
123
123
jpam-1.1.jar
124
- json4s-ast_2.12-3.5.3 .jar
125
- json4s-core_2.12-3.5.3 .jar
126
- json4s-jackson_2.12-3.5.3 .jar
127
- json4s-scalap_2.12-3.5.3 .jar
124
+ json4s-ast_2.12-3.6.6 .jar
125
+ json4s-core_2.12-3.6.6 .jar
126
+ json4s-jackson_2.12-3.6.6 .jar
127
+ json4s-scalap_2.12-3.6.6 .jar
128
128
jsp-api-2.1.jar
129
129
jsr305-3.0.0.jar
130
130
jta-1.1.jar
@@ -174,7 +174,7 @@ scala-compiler-2.12.8.jar
174
174
scala-library-2.12.8.jar
175
175
scala-parser-combinators_2.12-1.1.0.jar
176
176
scala-reflect-2.12.8.jar
177
- scala-xml_2.12-1.0.6 .jar
177
+ scala-xml_2.12-1.2.0 .jar
178
178
shapeless_2.12-2.3.2.jar
179
179
shims-0.7.45.jar
180
180
slf4j-api-1.7.16.jar
Original file line number Diff line number Diff line change @@ -124,10 +124,10 @@ joda-time-2.9.3.jar
124
124
jodd-core-3.5.2.jar
125
125
jpam-1.1.jar
126
126
json-smart-2.3.jar
127
- json4s-ast_2.12-3.5.3 .jar
128
- json4s-core_2.12-3.5.3 .jar
129
- json4s-jackson_2.12-3.5.3 .jar
130
- json4s-scalap_2.12-3.5.3 .jar
127
+ json4s-ast_2.12-3.6.6 .jar
128
+ json4s-core_2.12-3.6.6 .jar
129
+ json4s-jackson_2.12-3.6.6 .jar
130
+ json4s-scalap_2.12-3.6.6 .jar
131
131
jsp-api-2.1.jar
132
132
jsr305-3.0.0.jar
133
133
jta-1.1.jar
@@ -194,7 +194,7 @@ scala-compiler-2.12.8.jar
194
194
scala-library-2.12.8.jar
195
195
scala-parser-combinators_2.12-1.1.0.jar
196
196
scala-reflect-2.12.8.jar
197
- scala-xml_2.12-1.0.6 .jar
197
+ scala-xml_2.12-1.2.0 .jar
198
198
shapeless_2.12-2.3.2.jar
199
199
shims-0.7.45.jar
200
200
slf4j-api-1.7.16.jar
Original file line number Diff line number Diff line change 762
762
<dependency >
763
763
<groupId >org.json4s</groupId >
764
764
<artifactId >json4s-jackson_${scala.binary.version}</artifactId >
765
- <version >3.5.3 </version >
765
+ <version >3.6.6 </version >
766
766
<exclusions >
767
767
<exclusion >
768
768
<groupId >com.fasterxml.jackson.core</groupId >
769
769
<artifactId >*</artifactId >
770
770
</exclusion >
771
771
</exclusions >
772
772
</dependency >
773
+ <dependency >
774
+ <groupId >org.scala-lang.modules</groupId >
775
+ <artifactId >scala-xml_${scala.binary.version}</artifactId >
776
+ <version >1.2.0</version >
777
+ </dependency >
773
778
<dependency >
774
779
<groupId >org.scala-lang</groupId >
775
780
<artifactId >scala-compiler</artifactId >
You can’t perform that action at this time.
0 commit comments