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
8 changes: 4 additions & 4 deletions NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ product and version for which you are requesting source code.

Third Party Notices

jackson-databind 2.17.2 (Apache-2.0)
jackson-dataformat-csv 2.17.2 (Apache-2.0)
jackson-databind 2.19.0 (Apache-2.0)
jackson-dataformat-csv 2.19.0 (Apache-2.0)
okhttp 4.12.0 (Apache-2.0)
logging-interceptor 4.12.0 (Apache-2.0)
jakarta.mail 2.0.1 (EPL-1.0)
Expand All @@ -31,11 +31,11 @@ Third-Party Components

The following is a list of the third-party components used by the MarkLogic® for Java Client 7.1.0 (last updated January 6, 2025):

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

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

Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api 'com.squareup.okhttp3:okhttp:4.12.0'
api 'io.github.rburgst:okhttp-digest:2.7'
api 'org.slf4j:slf4j-api:2.0.17'
api "com.fasterxml.jackson.core:jackson-databind:2.17.2"
api "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"

api 'org.jdom:jdom2:2.0.6.1'
api 'org.dom4j:dom4j:2.1.4'
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ version=7.2-SNAPSHOT
describedName=MarkLogic Java Client API
publishUrl=file:../marklogic-java/releases

# See https://github.com/FasterXML/jackson for more information on the Jackson libraries.
jacksonVersion=2.19.0

# Defined at this level so that they can be set as system properties and used by the marklogic-client-api and test-app
# project
mlHost=localhost
Expand Down
4 changes: 2 additions & 2 deletions marklogic-client-api-functionaltests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ dependencies {
implementation 'org.slf4j:slf4j-api:2.0.17'
implementation 'commons-io:commons-io:2.17.0'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation "com.fasterxml.jackson.core:jackson-core:2.17.2"
implementation "com.fasterxml.jackson.core:jackson-databind:2.17.2"
implementation "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
implementation "org.jdom:jdom2:2.0.6.1"
implementation ("com.marklogic:ml-app-deployer:5.0.0") {
exclude module: "marklogic-client-api"
Expand Down
6 changes: 3 additions & 3 deletions marklogic-client-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ dependencies {

implementation 'javax.ws.rs:javax.ws.rs-api:2.1.1'
implementation 'org.slf4j:slf4j-api:2.0.16'
implementation "com.fasterxml.jackson.core:jackson-databind:2.17.2"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.17.2"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:${jacksonVersion}"

// Only used by extras (which some examples then depend on)
compileOnly 'org.jdom:jdom2:2.0.6.1'
Expand All @@ -53,7 +53,7 @@ dependencies {
testImplementation "org.mockito:mockito-inline:4.11.0"
testImplementation "com.squareup.okhttp3:mockwebserver:4.12.0"

testImplementation "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.2"
testImplementation "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jacksonVersion}"
testImplementation 'ch.qos.logback:logback-classic:1.3.15'

// Using this to avoid a schema validation issue with the regular xercesImpl
Expand Down
2 changes: 1 addition & 1 deletion ml-development-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
compileOnly gradleApi()
implementation project(':marklogic-client-api')
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.22'
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.17.2"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:${jacksonVersion}"
implementation 'com.networknt:json-schema-validator:1.0.88'

// Not yet migrating this project to JUnit 5. Will reconsider it once we have a reason to enhance
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,25 +69,25 @@ It is not intended to be used to build this project.
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.17.2</version>
<version>2.19.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.17.2</version>
<version>2.19.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.2</version>
<version>2.19.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-csv</artifactId>
<version>2.17.2</version>
<version>2.19.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion test-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation "io.undertow:undertow-servlet:2.2.37.Final"
implementation 'org.slf4j:slf4j-api:2.0.17'
implementation 'ch.qos.logback:logback-classic:1.3.15'
implementation "com.fasterxml.jackson.core:jackson-databind:2.17.2"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
}

Expand Down