Skip to content

Commit e704e8f

Browse files
committed
MLE-24703 Bumped to Java Client 8.0
Will likely bump to a snapshot build of marklogic-junit5 until that has 2.0 released.
1 parent 5629291 commit e704e8f

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

build.gradle

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,18 @@ subprojects {
1414

1515
repositories {
1616
mavenCentral()
17-
mavenLocal()
18-
maven {
19-
url = "https://bed-artifactory.bedford.progress.com:443/artifactory/ml-maven-snapshots/"
20-
}
2117
}
2218

2319
dependencies {
2420
// Without this, once using JUnit 5.12 or higher, Gradle will not find any tests and report an error of:
2521
// org.junit.platform.commons.JUnitException: TestEngine with ID 'junit-jupiter' failed to discover tests
26-
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.13.4"
22+
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.14.0"
2723

28-
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
24+
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.0'
2925
testImplementation "org.springframework:spring-test:${springVersion}"
3026

3127
// Forcing Spring to use logback instead of commons-logging
32-
testImplementation "ch.qos.logback:logback-classic:1.5.18"
28+
testImplementation "ch.qos.logback:logback-classic:1.5.19"
3329
testImplementation 'org.slf4j:jcl-over-slf4j:2.0.17'
3430
testImplementation 'org.slf4j:slf4j-api:2.0.17'
3531
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version=6.1-SNAPSHOT
22

33
# See https://github.com/FasterXML/jackson for more information the Jackson libraries.
44
# This should match the version used by the MarkLogic Java Client.
5-
jacksonVersion=2.19.0
5+
jacksonVersion=2.20.0
66

77
springVersion=6.2.11
88

ml-app-deployer/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ dependencies {
1515

1616
// Must depend on this as it's not an API dependency of the Java Client, and we have some code
1717
// that requires OkHttp for compilation.
18-
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
18+
implementation 'com.squareup.okhttp3:okhttp:5.2.0'
1919

2020
// For parsing/manipulating XML.
2121
implementation 'org.jdom:jdom2:2.0.6.1'
2222

2323
// For EqualsBuilder; added in 3.8.1 to support detecting if a mimetype's properties have changed or not
24-
implementation "org.apache.commons:commons-lang3:3.18.0"
24+
implementation "org.apache.commons:commons-lang3:3.19.0"
2525

2626
// For PreviewInterceptor; can be excluded if that feature is not used
2727
implementation("com.flipkart.zjsonpatch:zjsonpatch:0.4.16") {

ml-javaclient-util/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dependencies {
2-
api 'com.marklogic:marklogic-client-api:8.0-SNAPSHOT'
2+
api 'com.marklogic:marklogic-client-api:8.0.0'
33
api 'com.marklogic:marklogic-xcc:12.0.0'
44

55
// API dependency as some Spring classes, like Resource, are used throughout this project.

0 commit comments

Comments
 (0)