@@ -10,18 +10,20 @@ plugins {
1010group = " com.marklogic"
1111version = " 4.3.6"
1212
13- sourceCompatibility = " 8"
14- targetCompatibility = " 8"
13+ java {
14+ sourceCompatibility = 1.8
15+ targetCompatibility = 1.8
16+ }
1517
1618repositories {
1719 mavenLocal()
1820 mavenCentral()
1921}
2022
2123dependencies {
22- api ' com.marklogic:ml-javaclient-util:4.3.6 '
23- api ' org.springframework:spring-web:5.3.22 '
24- api ' com.fasterxml.jackson.core:jackson-databind:2.12.6 .1'
24+ api ' com.marklogic:ml-javaclient-util:4.3.7 '
25+ api ' org.springframework:spring-web:5.3.24 '
26+ api ' com.fasterxml.jackson.core:jackson-databind:2.12.7 .1'
2527
2628 implementation ' jaxen:jaxen:1.2.0'
2729 implementation ' org.apache.httpcomponents:httpclient:4.5.13'
@@ -42,19 +44,19 @@ dependencies {
4244 // Required for Java 11
4345 implementation " javax.xml.bind:jaxb-api:2.3.1"
4446 implementation " com.sun.xml.bind:jaxb-core:2.3.0.1"
45- implementation " com.sun.xml.bind:jaxb-impl:2.3.6 "
47+ implementation " com.sun.xml.bind:jaxb-impl:2.3.7 "
4648
4749 // Don't want to include this in the published jar, just the executable jar
4850 compileOnly " com.beust:jcommander:1.82"
49- compileOnly " ch.qos.logback:logback-classic:1.2.11 "
51+ compileOnly " ch.qos.logback:logback-classic:1.3.5 "
5052
51- testImplementation ' org.junit.jupiter:junit-jupiter:5.9.0 '
52- testImplementation ' org.springframework:spring-test:5.3.22 '
53+ testImplementation ' org.junit.jupiter:junit-jupiter:5.9.1 '
54+ testImplementation ' org.springframework:spring-test:5.3.24 '
5355 testImplementation ' commons-io:commons-io:2.11.0'
5456 testImplementation ' xmlunit:xmlunit:1.6'
5557
5658 // Forcing Spring to use logback for testing instead of commons-logging
57- testImplementation " ch.qos.logback:logback-classic:1.2.11 "
59+ testImplementation " ch.qos.logback:logback-classic:1.3.5 "
5860 testImplementation " org.slf4j:jcl-over-slf4j:1.7.36"
5961 testImplementation " org.slf4j:slf4j-api:1.7.36"
6062}
0 commit comments