Skip to content

Commit b3af5e2

Browse files
authored
Updating multiple dependencies to take care of the Spring vulnerability
* Updating multiple dependencies to take care of the Spring vulnerability: org.springframework:spring-context:5.3.9->5.3.18 org.springframework:spring-test:5.3.9->5.3.18 ml-javaclient-util:4.3.0->4.3.1 marklogic-client-api:5.5.0->5.5.3 * Bumping the version to 1.2.0 for the Spring vulnerability fix.
1 parent 47fa60e commit b3af5e2

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ buildscript {
3131
mavenCentral()
3232
}
3333
dependencies {
34-
classpath "com.marklogic:marklogic-unit-test-client:1.1.0"
34+
classpath "com.marklogic:marklogic-unit-test-client:1.2.0"
3535
classpath "com.marklogic:ml-gradle:4.2.1"
3636
}
3737
}
@@ -43,7 +43,7 @@ repositories {
4343
}
4444
4545
dependencies {
46-
mlBundle "com.marklogic:marklogic-unit-test-modules:1.1.0"
46+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.2.0"
4747
}
4848
```
4949

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ subprojects {
44
apply plugin: "signing"
55

66
group = "com.marklogic"
7-
version = "1.1.0"
7+
version = "1.2.0"
88

99
sourceCompatibility = "8"
1010
targetCompatibility = "8"

marklogic-junit5/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ plugins {
44

55
dependencies {
66
api project(":marklogic-unit-test-client")
7-
api "com.marklogic:ml-javaclient-util:4.3.0"
7+
api "com.marklogic:ml-javaclient-util:4.3.1"
88
api "org.jdom:jdom2:2.0.6"
99
api "org.junit.jupiter:junit-jupiter:5.7.2"
10-
api "org.springframework:spring-context:5.3.9"
11-
api "org.springframework:spring-test:5.3.9"
10+
api "org.springframework:spring-context:5.3.18"
11+
api "org.springframework:spring-test:5.3.18"
1212
api "com.fasterxml.jackson.core:jackson-databind:2.11.1"
1313
api "org.slf4j:slf4j-api:1.7.31"
1414

marklogic-junit5/examples/simple-ml-gradle/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Next, add the following dependencies:
3636
dependencies {
3737
// existing dependencies
3838
39-
testImplementation "com.marklogic:marklogic-junit5:1.1.0"
39+
testImplementation "com.marklogic:marklogic-junit5:1.2.0"
4040
4141
testImplementation "org.junit.jupiter:junit-jupiter:5.7.2"
4242

@@ -110,8 +110,8 @@ You'll still be able to leverage all of the testing support in AbstractMarkLogic
110110
If you'd like to write and execute marklogic-unit-test test modules, add the following to your build.gradle file as well (grab
111111
the latest version for both dependencies):
112112

113-
mlBundle "com.marklogic:marklogic-unit-test-modules:1.1.0"
114-
testImplementation "com.marklogic:marklogic-unit-test-client:1.1.0"
113+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.2.0"
114+
testImplementation "com.marklogic:marklogic-unit-test-client:1.2.0"
115115

116116
In addition, add the following to gradle.properties so that you can store test modules in a directory separate from
117117
your application modules:

marklogic-junit5/examples/simple-ml-gradle/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ repositories {
1414
}
1515

1616
dependencies {
17-
mlBundle "com.marklogic:marklogic-unit-test-modules:1.1.0"
17+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.2.0"
1818

19-
api "com.marklogic:marklogic-client-api:5.5.0"
19+
api "com.marklogic:marklogic-client-api:5.5.3"
2020

21-
testImplementation "com.marklogic:marklogic-junit5:1.1.0"
21+
testImplementation "com.marklogic:marklogic-junit5:1.2.0"
2222

2323
testImplementation "org.junit.jupiter:junit-jupiter:5.7.2"
2424

marklogic-junit5/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It is not intended to be used to build this project.
1212
<modelVersion>4.0.0</modelVersion>
1313
<groupId>com.marklogic</groupId>
1414
<artifactId>marklogic-junit5</artifactId>
15-
<version>1.1.0</version>
15+
<version>1.2.0</version>
1616
<name>com.marklogic:marklogic-junit5</name>
1717
<description>Supports testing MarkLogic applications</description>
1818
<url>https://github.com/marklogic-community/marklogic-junit5</url>
@@ -40,13 +40,13 @@ It is not intended to be used to build this project.
4040
<dependency>
4141
<groupId>com.marklogic</groupId>
4242
<artifactId>marklogic-unit-test-client</artifactId>
43-
<version>1.1.0</version>
43+
<version>1.2.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.marklogic</groupId>
4848
<artifactId>ml-javaclient-util</artifactId>
49-
<version>4.3.0</version>
49+
<version>4.3.1</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
<dependency>
@@ -64,13 +64,13 @@ It is not intended to be used to build this project.
6464
<dependency>
6565
<groupId>org.springframework</groupId>
6666
<artifactId>spring-context</artifactId>
67-
<version>5.3.9</version>
67+
<version>5.3.18</version>
6868
<scope>compile</scope>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.springframework</groupId>
7272
<artifactId>spring-test</artifactId>
73-
<version>5.3.9</version>
73+
<version>5.3.18</version>
7474
<scope>compile</scope>
7575
</dependency>
7676
<dependency>

marklogic-unit-test-client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
dependencies {
10-
api "com.marklogic:marklogic-client-api:5.5.0"
10+
api "com.marklogic:marklogic-client-api:5.5.3"
1111
implementation "org.slf4j:slf4j-api:1.7.31"
1212

1313
testImplementation "org.junit.jupiter:junit-jupiter:5.7.2"

marklogic-unit-test-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It is not intended to be used to build this project.
1212
<modelVersion>4.0.0</modelVersion>
1313
<groupId>com.marklogic</groupId>
1414
<artifactId>marklogic-unit-test-client</artifactId>
15-
<version>1.1.0</version>
15+
<version>1.2.0</version>
1616
<name>com.marklogic:marklogic-unit-test-client</name>
1717
<description>Supports testing MarkLogic applications</description>
1818
<url>https://github.com/marklogic-community/marklogic-unit-test-client</url>
@@ -40,7 +40,7 @@ It is not intended to be used to build this project.
4040
<dependency>
4141
<groupId>com.marklogic</groupId>
4242
<artifactId>marklogic-client-api</artifactId>
43-
<version>5.5.0</version>
43+
<version>5.5.3</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>

0 commit comments

Comments
 (0)