File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed
marklogic-unit-test-client
src/test/java/com/marklogic/test/unit Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ plugins {
44
55dependencies {
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"
Original file line number Diff line number Diff line change 11plugins {
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
99dependencies {
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
1616test {
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments