@@ -17,30 +17,29 @@ repositories {
1717}
1818
1919dependencies {
20- api (' com.marklogic:marklogic-client-api:5.4.0' ) {
21- // This isn't available via mavenCentral with its 2.3 coordinates, so it's excluded
22- // and then depended on below via its 2.5 coordinates
23- exclude module : " okhttp-digest"
24- }
25- implementation ' io.github.rburgst:okhttp-digest:2.5'
26-
27- api ' com.marklogic:marklogic-xcc:10.0.6.2'
28- api ' org.springframework:spring-context:5.3.7'
20+ api ' com.marklogic:marklogic-client-api:5.5.0'
21+ api ' com.marklogic:marklogic-xcc:10.0.7'
22+ api ' org.springframework:spring-context:5.3.9'
2923
3024 implementation ' org.jdom:jdom2:2.0.6'
25+
26+ // This isn't the latest release, but it matches what is used by the ML Java Client
3127 implementation ' com.fasterxml.jackson.core:jackson-databind:2.11.1'
32- implementation ' org.slf4j:slf4j-api:1.7.30'
3328
34- testImplementation " org.junit.jupiter:junit-jupiter:5.7.1"
35- testImplementation ' org.springframework:spring-test:5.3.7'
29+ // This is currently an implementation dependency, though perhaps should be an api dependency due to its usage in
30+ // LoggingObject; not clear yet on whether the protected Logger in that class should make this an api dependency or not
31+ implementation ' org.slf4j:slf4j-api:1.7.31'
32+
33+ testImplementation " org.junit.jupiter:junit-jupiter:5.7.2"
34+ testImplementation ' org.springframework:spring-test:5.3.9'
3635
3736 // Used for testing loading modules from the classpath
3837 testImplementation files(" lib/modules.jar" )
3938
4039 // Forcing Spring to use logback instead of commons-logging
41- testImplementation " ch.qos.logback:logback-classic:1.2.3 "
42- testImplementation " org.slf4j:jcl-over-slf4j:1.7.30 "
43- testImplementation " org.slf4j:slf4j-api:1.7.30 "
40+ testImplementation " ch.qos.logback:logback-classic:1.2.4 "
41+ testImplementation " org.slf4j:jcl-over-slf4j:1.7.31 "
42+ testImplementation " org.slf4j:slf4j-api:1.7.31 "
4443}
4544
4645test {
0 commit comments