Skip to content

Commit a40e821

Browse files
committed
MLE-24494 Bumping to latest Java Client snapshot
Want to see the tests pass with this before releasing the Java Client.
1 parent efc271e commit a40e821

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

.copyrightconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ startyear: 2023
1111
# - Dotfiles already skipped automatically
1212
# Enable by removing the leading '# ' from the next line and editing values.
1313
# filesexcluded: third_party/*, docs/generated/*.md, assets/*.png, scripts/temp_*.py, vendor/lib.js
14-
filesexcluded: .github/*, README.md, CONTRIBUTING.md, Jenkinsfile, gradle/*, docker-compose.yml, *.gradle, gradle.properties, gradlew, gradlew.bat, **/test/resources/**, docs/**, *.json
14+
filesexcluded: .github/*, README.md, CONTRIBUTING.md, Jenkinsfile, gradle/*, docker-compose.yml, *.gradle, gradle.properties, gradlew, gradlew.bat, **/test/resources/**, docs/**, *.json, *.txt

NOTICE.txt

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@ product and version for which you are requesting source code.
1010

1111
Third Party Notices
1212

13-
jackson-dataformat-xml 2.18.2 (Apache-2.0)
13+
jackson-dataformat-xml 2.19.0 (Apache-2.0)
1414
jdom2 2.0.6.1 (Apache-2.0)
1515
jena-arq 5.5.0 (Apache-2.0)
1616
langchain4j 1.5.0 (Apache-2.0)
17-
marklogic-client-api 7.2.0 (Apache-2.0)
18-
okhttp 4.12.0 (Apache-2.0)
17+
marklogic-client-api 8.0.0 (Apache-2.0)
1918
Semaphore-CS-Client 5.10.0 (Apache-2.0)
2019
Semaphore-Cloud-Client 5.10.0 (Apache-2.0)
2120
tika-core 3.2.3 (Apache-2.0)
@@ -24,7 +23,7 @@ Third-Party Components
2423

2524
The following is a list of the third-party components used by the MarkLogic® Spark connector 2.7.0 (last updated July 31, 2025):
2625

27-
jackson-dataformat-xml 2.18.2 (Apache-2.0)
26+
jackson-dataformat-xml 2.19.0 (Apache-2.0)
2827
https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/
2928
For the full text of the Apache-2.0 license, see Apache License 2.0 (Apache-2.0)
3029

@@ -44,10 +43,6 @@ marklogic-client-api 7.2.0 (Apache-2.0)
4443
https://repo1.maven.org/maven2/com/marklogic/marklogic-client-api/
4544
For the full text of the Apache-2.0 license, see Apache License 2.0 (Apache-2.0)
4645

47-
okhttp 4.12.0 (Apache-2.0)
48-
https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/
49-
For the full text of the Apache-2.0 license, see Apache License 2.0 (Apache-2.0)
50-
5146
Semaphore-CS-Client 5.10.0 (Apache-2.0)
5247
https://repo1.maven.org/maven2/com/smartlogic/csclient/Semaphore-CS-Client/
5348
For the full text of the Apache-2.0 license, see Apache License 2.0 (Apache-2.0)

marklogic-spark-connector/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ dependencies {
3838
}
3939

4040
// This is compileOnly as Spark will provide its own copy at runtime.
41-
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.18.2"
41+
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.19.0"
4242

43-
implementation("com.marklogic:marklogic-client-api:7.2.0") {
43+
implementation("com.marklogic:marklogic-client-api:8.0-SNAPSHOT") {
4444
// Need to use the versions of Jackson preferred by Spark.
4545
exclude group: "com.fasterxml.jackson.core"
4646
exclude group: "com.fasterxml.jackson.dataformat"
@@ -86,7 +86,7 @@ dependencies {
8686

8787
// Need this so that an OkHttpClientConfigurator can be created.
8888
// Only needs compileOnly, as the Java Client brings this as an implementation dependency.
89-
compileOnly 'com.squareup.okhttp3:okhttp:4.12.0'
89+
compileOnly 'com.squareup.okhttp3:okhttp:5.2.0'
9090

9191
// Automatic loading of test framework implementation dependencies is deprecated.
9292
// https://docs.gradle.org/current/userguide/upgrading_version_8.html#test_framework_implementation_dependencies

0 commit comments

Comments
 (0)