Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Commit 0f17124

Browse files
committed
Upgrading dependencies
1 parent a54b021 commit 0f17124

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

build.gradle

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ plugins {
22
id "java-library"
33
id "maven-publish"
44
id "signing"
5-
id "com.github.jk1.dependency-license-report" version "1.3"
5+
id "com.github.jk1.dependency-license-report" version "1.17"
66

77
id "net.saliman.properties" version "1.5.1"
88
id "io.snyk.gradle.plugin.snykplugin" version "0.4"
99
}
1010

1111
group = "com.marklogic"
12-
version = "2.3.0"
12+
version = "2.4.0-SNAPSHOT"
1313

1414
sourceCompatibility = "8"
1515
targetCompatibility = "8"
@@ -24,24 +24,19 @@ repositories {
2424
}
2525

2626
dependencies {
27-
api ('com.marklogic:marklogic-client-api:5.4.0') {
28-
// This isn't available via mavenCentral with its 2.3 coordinates, so it's excluded
29-
// and then depended on below via its 2.5 coordinates
30-
exclude module: "okhttp-digest"
31-
}
32-
implementation 'io.github.rburgst:okhttp-digest:2.5'
33-
implementation 'org.slf4j:slf4j-api:1.7.30'
27+
api 'com.marklogic:marklogic-client-api:5.5.0'
28+
implementation 'org.slf4j:slf4j-api:1.7.31'
3429

3530
testImplementation "junit:junit:4+"
3631
// Sticking with the latest 4.3.x for tests; including the latest 5.2.x release oddly resulted in the servlet package
3732
// being required
3833
testImplementation "org.springframework:spring-test:4.3.29.RELEASE"
39-
testImplementation "com.marklogic:ml-javaclient-util:4.2.0"
34+
testImplementation "com.marklogic:ml-javaclient-util:4.3.0"
4035

4136
// Forcing Spring to use logback instead of commons-logging
42-
testImplementation "ch.qos.logback:logback-classic:1.2.3"
43-
testImplementation "org.slf4j:jcl-over-slf4j:1.7.30"
44-
testImplementation "org.slf4j:slf4j-api:1.7.30"
37+
testImplementation "ch.qos.logback:logback-classic:1.2.4"
38+
testImplementation "org.slf4j:jcl-over-slf4j:1.7.31"
39+
testImplementation "org.slf4j:slf4j-api:1.7.31"
4540
}
4641

4742
task sourcesJar(type: Jar, dependsOn: classes) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)