File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
marklogic-spark-connector Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
44}
55
66configurations {
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
You can’t perform that action at this time.
0 commit comments