Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions marklogic-spark-connector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

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

testImplementation "ch.qos.logback:logback-classic:1.5.18"
testImplementation "ch.qos.logback:logback-classic:1.5.19"
testImplementation "org.skyscreamer:jsonassert:1.5.3"

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

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