Skip to content

Commit bea489a

Browse files
committed
Bumped to 1.3.0
And using latest ml-gradle/ml-javaclient-util releases too, which came out yesterday
1 parent 7289f61 commit bea489a

File tree

8 files changed

+16
-19
lines changed

8 files changed

+16
-19
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ buildscript {
3131
mavenCentral()
3232
}
3333
dependencies {
34-
classpath "com.marklogic:marklogic-unit-test-client:1.2.1"
35-
classpath "com.marklogic:ml-gradle:4.3.5"
34+
classpath "com.marklogic:marklogic-unit-test-client:1.3.0"
35+
classpath "com.marklogic:ml-gradle:4.5.0"
3636
}
3737
}
3838
@@ -43,7 +43,7 @@ repositories {
4343
}
4444
4545
dependencies {
46-
mlBundle "com.marklogic:marklogic-unit-test-modules:1.2.1"
46+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.3.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.3.0-SNAPSHOT"
7+
version = "1.3.0"
88

99
java {
1010
sourceCompatibility = 1.8

marklogic-junit5/build.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ plugins {
44

55
dependencies {
66
api project(":marklogic-unit-test-client")
7-
api ("com.marklogic:ml-javaclient-util:4.4.0") {
8-
// Prefer the version coming from marklogic-unit-test-client
9-
exclude module: "marklogic-client-api"
10-
}
7+
api "com.marklogic:ml-javaclient-util:4.5.0"
118
api "org.jdom:jdom2:2.0.6.1"
129
api "org.junit.jupiter:junit-jupiter:5.9.2"
1310
api "org.springframework:spring-context:5.3.24"

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ Next, add the following dependencies:
3636
dependencies {
3737
// existing dependencies
3838
39-
testImplementation "com.marklogic:marklogic-junit5:1.2.1"
39+
testImplementation "com.marklogic:marklogic-junit5:1.3.0"
4040
4141
// Forcing Spring to use logback instead of commons-logging
42-
testImplementation "ch.qos.logback:logback-classic:1.2.11"
42+
testImplementation "ch.qos.logback:logback-classic:1.3.5"
4343
testImplementation "org.slf4j:jcl-over-slf4j:1.7.36"
4444
}
4545

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

110-
mlBundle "com.marklogic:marklogic-unit-test-modules:1.2.1"
111-
testImplementation "com.marklogic:marklogic-unit-test-client:1.2.1"
110+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.3.0"
111+
testImplementation "com.marklogic:marklogic-unit-test-client:1.3.0"
112112

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

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

Lines changed: 2 additions & 2 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.2.1"
17+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.3.0"
1818

1919
api "com.marklogic:marklogic-client-api:6.1.0"
2020

21-
testImplementation "com.marklogic:marklogic-junit5:1.2.1"
21+
testImplementation "com.marklogic:marklogic-junit5:1.3.0"
2222

2323
// Forcing Spring to use logback instead of commons-logging
2424
testImplementation "ch.qos.logback:logback-classic:1.3.5"

marklogic-junit5/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ It is not intended to be used to build this project.
4646
<dependency>
4747
<groupId>com.marklogic</groupId>
4848
<artifactId>ml-javaclient-util</artifactId>
49-
<version>4.3.7</version>
49+
<version>4.5.0</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
<dependency>
@@ -58,7 +58,7 @@ It is not intended to be used to build this project.
5858
<dependency>
5959
<groupId>org.junit.jupiter</groupId>
6060
<artifactId>junit-jupiter</artifactId>
61-
<version>5.9.1</version>
61+
<version>5.9.2</version>
6262
<scope>compile</scope>
6363
</dependency>
6464
<dependency>
@@ -76,7 +76,7 @@ It is not intended to be used to build this project.
7676
<dependency>
7777
<groupId>com.fasterxml.jackson.core</groupId>
7878
<artifactId>jackson-databind</artifactId>
79-
<version>2.13.4.2</version>
79+
<version>2.14.1</version>
8080
<scope>compile</scope>
8181
</dependency>
8282
<dependency>

marklogic-unit-test-client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
// ml-gradle is used for deploying a test application so that this project itself can be tested
3-
id "com.marklogic.ml-gradle" version "4.4.0"
3+
id "com.marklogic.ml-gradle" version "4.5.0"
44

55
// Used to generate a license report
66
id "com.github.jk1.dependency-license-report" version "1.17"

marklogic-unit-test-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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>6.0.0</version>
43+
<version>6.1.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>

0 commit comments

Comments
 (0)