Skip to content

Commit 00c2dc2

Browse files
committed
MLE-24717 Bumping logback
Fixed a couple Gradle warnings too.
1 parent 9d11327 commit 00c2dc2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

marklogic-spark-connector/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
configurations {
7-
all {
7+
configureEach {
88
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
99
// These all impact Spark and its dependencies, but not the published connector as the connector does not contain
1010
// any Spark libraries.
@@ -125,7 +125,7 @@ dependencies {
125125
// marklogic-junit5 still needs spring-test, but we want the 6 version to minimize vulnerabilities.
126126
testImplementation "org.springframework:spring-test:6.2.11"
127127

128-
testImplementation "ch.qos.logback:logback-classic:1.5.18"
128+
testImplementation "ch.qos.logback:logback-classic:1.5.19"
129129
testImplementation "org.skyscreamer:jsonassert:1.5.3"
130130

131131
testImplementation "org.apache.tika:tika-parser-microsoft-module:${tikaVersion}"
@@ -152,7 +152,7 @@ java {
152152
}
153153

154154
// Allows for identifying compiler warnings and treating them as errors.
155-
tasks.withType(JavaCompile) {
155+
tasks.withType(JavaCompile).configureEach {
156156
options.compilerArgs += ["-Xlint:unchecked", "-Xlint:deprecation", "-Werror"]
157157
options.deprecation = true
158158
options.warnings = true

0 commit comments

Comments
 (0)