File tree 6 files changed +10
-12
lines changed
marklogic-client-api-functionaltests
6 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies {
16
16
api ' com.squareup.okhttp3:okhttp:4.12.0'
17
17
api ' io.github.rburgst:okhttp-digest:2.7'
18
18
api ' org.slf4j:slf4j-api:2.0.16'
19
- api " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
19
+ api " com.fasterxml.jackson.core:jackson-databind:2.17.2 "
20
20
21
21
// hsqldb < 2.7 has a High CVE - https://nvd.nist.gov/vuln/detail/CVE-2022-41853 .
22
22
// And hsqldb 2.6+ requires Java 11+. So this is ignored, along with the associated test,
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ version=7.0-SNAPSHOT
3
3
describedName =MarkLogic Java Client API
4
4
publishUrl =file:../marklogic-java/releases
5
5
6
- jacksonVersion =2.17.2
7
-
8
6
# Defined at this level so that they can be set as system properties and used by the marklogic-client-api and test-app
9
7
# project
10
8
mlHost =localhost
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ dependencies {
24
24
implementation ' org.slf4j:slf4j-api:2.0.16'
25
25
implementation ' commons-io:commons-io:2.17.0'
26
26
implementation ' com.squareup.okhttp3:okhttp:4.12.0'
27
- implementation " com.fasterxml.jackson.core:jackson-core:${ jacksonVersion } "
28
- implementation " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
27
+ implementation " com.fasterxml.jackson.core:jackson-core:2.17.2 "
28
+ implementation " com.fasterxml.jackson.core:jackson-databind:2.17.2 "
29
29
implementation " org.jdom:jdom2:2.0.6.1"
30
30
implementation (" com.marklogic:ml-app-deployer:5.0.0" ) {
31
31
exclude module : " marklogic-client-api"
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ dependencies {
30
30
31
31
implementation ' javax.ws.rs:javax.ws.rs-api:2.1.1'
32
32
implementation ' org.slf4j:slf4j-api:2.0.16'
33
- implementation " com.fasterxml.jackson.core:jackson-core:${ jacksonVersion } "
34
- implementation " com.fasterxml.jackson.core:jackson-annotations:${ jacksonVersion } "
35
- implementation " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
36
- implementation " com.fasterxml.jackson.dataformat:jackson-dataformat-csv:${ jacksonVersion } "
33
+ implementation " com.fasterxml.jackson.core:jackson-core:2.17.2 "
34
+ implementation " com.fasterxml.jackson.core:jackson-annotations:2.17.2 "
35
+ implementation " com.fasterxml.jackson.core:jackson-databind:2.17.2 "
36
+ implementation " com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.17.2 "
37
37
38
38
// Only used by extras (which some examples then depend on)
39
39
// Forcing codec version to avoid vulnerability with older version in httpclient
@@ -59,7 +59,7 @@ dependencies {
59
59
testImplementation " org.mockito:mockito-inline:4.11.0"
60
60
testImplementation " com.squareup.okhttp3:mockwebserver:4.12.0"
61
61
62
- testImplementation " com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${ jacksonVersion } "
62
+ testImplementation " com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.2 "
63
63
testImplementation ' ch.qos.logback:logback-classic:1.3.14'
64
64
// schema validation issue with testImplementation 'xerces:xercesImpl:2.12.0'
65
65
testImplementation ' org.opengis.cite.xerces:xercesImpl-xsd11:2.12-beta-r1667115'
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies {
12
12
compileOnly gradleApi()
13
13
implementation project(' :marklogic-client-api' )
14
14
implementation ' org.jetbrains.kotlin:kotlin-stdlib:1.8.22'
15
- implementation " com.fasterxml.jackson.module:jackson-module-kotlin:${ jacksonVersion } "
15
+ implementation " com.fasterxml.jackson.module:jackson-module-kotlin:2.17.2 "
16
16
implementation ' com.networknt:json-schema-validator:1.0.88'
17
17
18
18
// 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 @@ -10,7 +10,7 @@ dependencies {
10
10
implementation " com.marklogic:ml-javaclient-util:4.8.0"
11
11
implementation ' org.slf4j:slf4j-api:2.0.16'
12
12
implementation ' ch.qos.logback:logback-classic:1.3.14'
13
- implementation " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
13
+ implementation " com.fasterxml.jackson.core:jackson-databind:2.17.2 "
14
14
implementation ' com.squareup.okhttp3:okhttp:4.12.0'
15
15
}
16
16
You can’t perform that action at this time.
0 commit comments