Skip to content

Commit c6830a1

Browse files
authored
Merge pull request #197 from marklogic-community/feature/dependency-bump
Bumping dependencies
2 parents 1127191 + 18c91ed commit c6830a1

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ subprojects {
1616

1717
// For local development
1818
mavenLocal()
19+
20+
maven {
21+
url "https://nexus.marklogic.com/repository/maven-snapshots/"
22+
}
1923
}
2024

2125
dependencies {

marklogic-junit5/build.gradle

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

55
dependencies {
66
api project(":marklogic-unit-test-client")
7-
api "com.marklogic:ml-javaclient-util:4.5.0"
7+
api "com.marklogic:ml-javaclient-util:4.6-SNAPSHOT"
88
api "org.jdom:jdom2:2.0.6.1"
9-
api "org.junit.jupiter:junit-jupiter:5.9.2"
10-
api "org.springframework:spring-context:5.3.24"
11-
api "org.springframework:spring-test:5.3.24"
12-
api "com.fasterxml.jackson.core:jackson-databind:2.14.1"
9+
api "org.junit.jupiter:junit-jupiter:5.10.0"
10+
api "org.springframework:spring-context:5.3.29"
11+
api "org.springframework:spring-test:5.3.29"
12+
api "com.fasterxml.jackson.core:jackson-databind:2.15.2"
1313
api 'org.slf4j:slf4j-api:1.7.36'
1414

1515
implementation "jaxen:jaxen:2.0.0"

marklogic-unit-test-client/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
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.5.0"
3+
id "com.marklogic.ml-gradle" version "4.5.2"
44

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

99
dependencies {
10-
api "com.marklogic:marklogic-client-api:6.1.0"
10+
api "com.marklogic:marklogic-client-api:6.3-SNAPSHOT"
1111
implementation "org.slf4j:slf4j-api:1.7.36"
1212

13-
testImplementation "org.junit.jupiter:junit-jupiter:5.9.2"
13+
testImplementation "org.junit.jupiter:junit-jupiter:5.10.0"
1414
}
1515

1616
test {

marklogic-unit-test-client/src/test/java/com/marklogic/test/unit/RunSuiteTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ public class RunSuiteTest {
1515
public void test() {
1616
List<JUnitTestSuite> suites = new TestManager(ClientUtil.getClient()).runAllSuites();
1717
String report = new DefaultJUnitTestReporter().reportOnJUnitTestSuites(suites);
18-
assertEquals("42 tests completed, 0 failed", report.trim());
18+
assertEquals("45 tests completed, 0 failed", report.trim());
1919
}
2020
}

0 commit comments

Comments
 (0)