Skip to content

Commit ea9b62d

Browse files
authored
Fix Spark 3.x test configurations (#1814)
1 parent 0e46de4 commit ea9b62d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spark/core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ sparkVariants {
130130

131131
// deal with the messy conflicts out there
132132
// Ignore the scalaCompilerPlugin configurations since it is immediately resolved to configure the scala compiler tasks
133-
configurations.matching{ it.name.contains('CompilerPlugin') == false }.all { Configuration conf ->
133+
configurations.matching{ it.name.contains('CompilerPlugin') == false && (it.name.contains("spark30") || it.name.contains("Spark30")) == false}.all { Configuration conf ->
134134
conf.resolutionStrategy {
135135
eachDependency { details ->
136136
// change all javax.servlet artifacts to the one used by Spark otherwise these will lead to

0 commit comments

Comments
 (0)