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

Commit 5114e23

Browse files
committed
Upgrading dependencies
Also changed jackson-databind dependency to the latest 2.12.6.x release, as Java Client is still on 2.12.x, and ml-javaclient-util is on 2.12.6.x. We can go to 2.13.x across the board once Java Client goes to 2.13.x.
1 parent 82409a4 commit 5114e23

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ repositories {
1919
}
2020

2121
dependencies {
22-
api 'com.marklogic:ml-javaclient-util:4.3.1'
23-
api 'org.springframework:spring-web:5.3.18'
24-
api 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
22+
api 'com.marklogic:ml-javaclient-util:4.3.3'
23+
api 'org.springframework:spring-web:5.3.22'
24+
api 'com.fasterxml.jackson.core:jackson-databind:2.12.6.1'
2525

2626
implementation 'jaxen:jaxen:1.2.0'
2727
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
@@ -48,8 +48,8 @@ dependencies {
4848
compileOnly "com.beust:jcommander:1.82"
4949
compileOnly "ch.qos.logback:logback-classic:1.2.11"
5050

51-
testImplementation "org.junit.jupiter:junit-jupiter:5.7.2"
52-
testImplementation 'org.springframework:spring-test:5.3.18'
51+
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
52+
testImplementation 'org.springframework:spring-test:5.3.22'
5353
testImplementation 'commons-io:commons-io:2.11.0'
5454
testImplementation 'xmlunit:xmlunit:1.6'
5555

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.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ It is not intended to be used to build this project.
4040
<dependency>
4141
<groupId>com.marklogic</groupId>
4242
<artifactId>ml-javaclient-util</artifactId>
43-
<version>4.3.1</version>
43+
<version>4.3.3</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.springframework</groupId>
4848
<artifactId>spring-web</artifactId>
49-
<version>5.3.18</version>
49+
<version>5.3.22</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
<dependency>
5353
<groupId>com.fasterxml.jackson.core</groupId>
5454
<artifactId>jackson-databind</artifactId>
55-
<version>2.13.2.2</version>
55+
<version>2.12.6.1</version>
5656
<scope>compile</scope>
5757
</dependency>
5858
<dependency>

0 commit comments

Comments
 (0)