File tree Expand file tree Collapse file tree 8 files changed +19
-16
lines changed
marklogic-client-api-functionaltests Expand file tree Collapse file tree 8 files changed +19
-16
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ product and version for which you are requesting source code.
1010
1111Third Party Notices
1212
13- jackson-databind 2.17.2 (Apache-2.0)
14- jackson-dataformat-csv 2.17.2 (Apache-2.0)
13+ jackson-databind 2.19.0 (Apache-2.0)
14+ jackson-dataformat-csv 2.19.0 (Apache-2.0)
1515okhttp 4.12.0 (Apache-2.0)
1616logging-interceptor 4.12.0 (Apache-2.0)
1717jakarta.mail 2.0.1 (EPL-1.0)
@@ -31,11 +31,11 @@ Third-Party Components
3131
3232The following is a list of the third-party components used by the MarkLogic® for Java Client 7.1.0 (last updated January 6, 2025):
3333
34- jackson-databind 2.17.2 (Apache-2.0)
34+ jackson-databind 2.19.0 (Apache-2.0)
3535https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/
3636For the full text of the Apache-2.0 license, see Apache License 2.0 (Apache-2.0)
3737
38- jackson-dataformat-csv 2.17.2 (Apache-2.0)
38+ jackson-dataformat-csv 2.19.0 (Apache-2.0)
3939https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/
4040For the full text of the Apache-2.0 license, see Apache License 2.0 (Apache-2.0)
4141
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependencies {
1313 api ' com.squareup.okhttp3:okhttp:4.12.0'
1414 api ' io.github.rburgst:okhttp-digest:2.7'
1515 api ' org.slf4j:slf4j-api:2.0.17'
16- api " com.fasterxml.jackson.core:jackson-databind:2.17.2 "
16+ api " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
1717
1818 api ' org.jdom:jdom2:2.0.6.1'
1919 api ' org.dom4j:dom4j:2.1.4'
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ version=7.2-SNAPSHOT
33describedName =MarkLogic Java Client API
44publishUrl =file:../marklogic-java/releases
55
6+ # See https://github.com/FasterXML/jackson for more information the Jackson libraries.
7+ jacksonVersion =2.19.0
8+
69# Defined at this level so that they can be set as system properties and used by the marklogic-client-api and test-app
710# project
811mlHost =localhost
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ dependencies {
2424 implementation ' org.slf4j:slf4j-api:2.0.17'
2525 implementation ' commons-io:commons-io:2.17.0'
2626 implementation ' com.squareup.okhttp3:okhttp:4.12.0'
27- implementation " com.fasterxml.jackson.core:jackson-core:2.17.2 "
28- implementation " com.fasterxml.jackson.core:jackson-databind:2.17.2 "
27+ implementation " com.fasterxml.jackson.core:jackson-core:${ jacksonVersion } "
28+ implementation " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
2929 implementation " org.jdom:jdom2:2.0.6.1"
3030 implementation (" com.marklogic:ml-app-deployer:5.0.0" ) {
3131 exclude module : " marklogic-client-api"
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ dependencies {
2929
3030 implementation ' javax.ws.rs:javax.ws.rs-api:2.1.1'
3131 implementation ' org.slf4j:slf4j-api:2.0.16'
32- implementation " com.fasterxml.jackson.core:jackson-databind:2.17.2 "
33- implementation " com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.17.2 "
32+ implementation " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
33+ implementation " com.fasterxml.jackson.dataformat:jackson-dataformat-csv:${ jacksonVersion } "
3434
3535 // Only used by extras (which some examples then depend on)
3636 compileOnly ' org.jdom:jdom2:2.0.6.1'
@@ -53,7 +53,7 @@ dependencies {
5353 testImplementation " org.mockito:mockito-inline:4.11.0"
5454 testImplementation " com.squareup.okhttp3:mockwebserver:4.12.0"
5555
56- testImplementation " com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.2 "
56+ testImplementation " com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${ jacksonVersion } "
5757 testImplementation ' ch.qos.logback:logback-classic:1.3.15'
5858
5959 // Using this to avoid a schema validation issue with the regular xercesImpl
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies {
1212 compileOnly gradleApi()
1313 implementation project(' :marklogic-client-api' )
1414 implementation ' org.jetbrains.kotlin:kotlin-stdlib:1.8.22'
15- implementation " com.fasterxml.jackson.module:jackson-module-kotlin:2.17.2 "
15+ implementation " com.fasterxml.jackson.module:jackson-module-kotlin:${ jacksonVersion } "
1616 implementation ' com.networknt:json-schema-validator:1.0.88'
1717
1818 // Not yet migrating this project to JUnit 5. Will reconsider it once we have a reason to enhance
Original file line number Diff line number Diff line change @@ -69,25 +69,25 @@ It is not intended to be used to build this project.
6969 <dependency >
7070 <groupId >com.fasterxml.jackson.core</groupId >
7171 <artifactId >jackson-core</artifactId >
72- <version >2.17.2 </version >
72+ <version >2.19.0 </version >
7373 <scope >runtime</scope >
7474 </dependency >
7575 <dependency >
7676 <groupId >com.fasterxml.jackson.core</groupId >
7777 <artifactId >jackson-annotations</artifactId >
78- <version >2.17.2 </version >
78+ <version >2.19.0 </version >
7979 <scope >runtime</scope >
8080 </dependency >
8181 <dependency >
8282 <groupId >com.fasterxml.jackson.core</groupId >
8383 <artifactId >jackson-databind</artifactId >
84- <version >2.17.2 </version >
84+ <version >2.19.0 </version >
8585 <scope >runtime</scope >
8686 </dependency >
8787 <dependency >
8888 <groupId >com.fasterxml.jackson.dataformat</groupId >
8989 <artifactId >jackson-dataformat-csv</artifactId >
90- <version >2.17.2 </version >
90+ <version >2.19.0 </version >
9191 <scope >runtime</scope >
9292 </dependency >
9393 </dependencies >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ dependencies {
99 implementation " io.undertow:undertow-servlet:2.2.37.Final"
1010 implementation ' org.slf4j:slf4j-api:2.0.17'
1111 implementation ' ch.qos.logback:logback-classic:1.3.15'
12- implementation " com.fasterxml.jackson.core:jackson-databind:2.17.2 "
12+ implementation " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
1313 implementation ' com.squareup.okhttp3:okhttp:4.12.0'
1414}
1515
You can’t perform that action at this time.
0 commit comments