Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 9b2a714

Browse files
committed
Upgrading dependencies, including to Java Client 5.5.0
1 parent 6b2682b commit 9b2a714

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

build.gradle

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,29 @@ repositories {
1717
}
1818

1919
dependencies {
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

4645
test {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip

0 commit comments

Comments
 (0)