Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copyrightconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ startyear: 2023
# - Dotfiles already skipped automatically
# Enable by removing the leading '# ' from the next line and editing values.
# filesexcluded: third_party/*, docs/generated/*.md, assets/*.png, scripts/temp_*.py, vendor/lib.js
filesexcluded: .github/*, README.md, CONTRIBUTING.md, Jenkinsfile, gradle/*, docker-compose.yml, *.gradle, gradle.properties, gradlew, gradlew.bat, **/test/resources/**, docs/**, *.json
filesexcluded: .github/*, README.md, CONTRIBUTING.md, Jenkinsfile, gradle/*, docker-compose.yml, *.gradle, gradle.properties, gradlew, gradlew.bat, **/test/resources/**, docs/**, *.json, *.txt
11 changes: 3 additions & 8 deletions NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ product and version for which you are requesting source code.

Third Party Notices

jackson-dataformat-xml 2.18.2 (Apache-2.0)
jackson-dataformat-xml 2.19.0 (Apache-2.0)
jdom2 2.0.6.1 (Apache-2.0)
jena-arq 5.5.0 (Apache-2.0)
langchain4j 1.5.0 (Apache-2.0)
marklogic-client-api 7.2.0 (Apache-2.0)
okhttp 4.12.0 (Apache-2.0)
marklogic-client-api 8.0.0 (Apache-2.0)
Copy link

Copilot AI Oct 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version mismatch: The NOTICE.txt file shows marklogic-client-api version as 8.0.0, but the build.gradle file specifies 8.0-SNAPSHOT. These should match for consistency.

Copilot uses AI. Check for mistakes.
Semaphore-CS-Client 5.10.0 (Apache-2.0)
Semaphore-Cloud-Client 5.10.0 (Apache-2.0)
tika-core 3.2.3 (Apache-2.0)
Expand All @@ -24,7 +23,7 @@ Third-Party Components

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

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

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

okhttp 4.12.0 (Apache-2.0)
https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/
For the full text of the Apache-2.0 license, see Apache License 2.0 (Apache-2.0)

Semaphore-CS-Client 5.10.0 (Apache-2.0)
https://repo1.maven.org/maven2/com/smartlogic/csclient/Semaphore-CS-Client/
For the full text of the Apache-2.0 license, see Apache License 2.0 (Apache-2.0)
Expand Down
6 changes: 3 additions & 3 deletions marklogic-spark-connector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ dependencies {
}

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

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

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

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