Skip to content

Commit 4f5697f

Browse files
committed
Bumped to 1.4.0
1 parent 68aed9d commit 4f5697f

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

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.4-SNAPSHOT"
7+
version = "1.4.0"
88

99
java {
1010
sourceCompatibility = 1.8

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ adding the following configuration to the project's `build.gradle` file:
3030

3131
```
3232
dependencies {
33-
mlBundle "com.marklogic:marklogic-unit-test-modules:1.3.0"
33+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.4.0"
3434
}
3535
```
3636

@@ -49,7 +49,7 @@ buildscript {
4949
mavenCentral()
5050
}
5151
dependencies {
52-
classpath "com.marklogic:marklogic-unit-test-client:1.3.0"
52+
classpath "com.marklogic:marklogic-unit-test-client:1.4.0"
5353
}
5454
}
5555
```

docs/running-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
mavenCentral()
2020
}
2121
dependencies {
22-
classpath "com.marklogic:marklogic-unit-test-client:1.3.0"
22+
classpath "com.marklogic:marklogic-unit-test-client:1.4.0"
2323
}
2424
}
2525
```

examples/getting-started/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath "com.marklogic:marklogic-unit-test-client:1.3.0"
6+
classpath "com.marklogic:marklogic-unit-test-client:1.4.0"
77
}
88
}
99

@@ -17,5 +17,5 @@ repositories {
1717
}
1818

1919
dependencies {
20-
mlBundle "com.marklogic:marklogic-unit-test-modules:1.3.0"
20+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.4.0"
2121
}

examples/test-examples/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath "com.marklogic:marklogic-unit-test-client:1.3.0"
6+
classpath "com.marklogic:marklogic-unit-test-client:1.4.0"
77
}
88
}
99

1010
plugins {
1111
id "net.saliman.properties" version "1.5.2"
12-
id "com.marklogic.ml-gradle" version "4.5.2"
12+
id "com.marklogic.ml-gradle" version "4.6.0"
1313
}
1414

1515
repositories {
1616
mavenCentral()
1717
}
1818

1919
dependencies {
20-
mlBundle "com.marklogic:marklogic-unit-test-modules:1.3.0"
20+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.4.0"
2121
}

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.3.0"
39+
testImplementation "com.marklogic:marklogic-junit5:1.4.0"
4040
4141
// Forcing Spring to use logback instead of commons-logging
4242
testImplementation "ch.qos.logback:logback-classic:1.3.5"
@@ -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.3.0"
111-
testImplementation "com.marklogic:marklogic-unit-test-client:1.3.0"
110+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.4.0"
111+
testImplementation "com.marklogic:marklogic-unit-test-client:1.4.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: 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.3.0"
17+
mlBundle "com.marklogic:marklogic-unit-test-modules:1.4.0"
1818

19-
api "com.marklogic:marklogic-client-api:6.1.0"
19+
api "com.marklogic:marklogic-client-api:6.3.0"
2020

21-
testImplementation "com.marklogic:marklogic-junit5:1.3.0"
21+
testImplementation "com.marklogic:marklogic-junit5:1.4.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: 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-junit5</artifactId>
15-
<version>1.3.0</version>
15+
<version>1.4.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,7 +40,7 @@ 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.3.0</version>
43+
<version>1.4.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>

marklogic-unit-test-client/pom.xml

Lines changed: 1 addition & 1 deletion
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.3.0</version>
15+
<version>1.4.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>

0 commit comments

Comments
 (0)