@@ -27,10 +27,10 @@ dependencies {
2727
2828 implementation ' javax.ws.rs:javax.ws.rs-api:2.1.1'
2929 implementation ' org.slf4j:slf4j-api:1.7.36'
30- implementation ' com.fasterxml.jackson.core:jackson-core:2.15.3 '
31- implementation ' com.fasterxml.jackson.core:jackson-annotations:2.15.3 '
32- implementation ' com.fasterxml.jackson.core:jackson-databind:2.15.3 '
33- implementation ' com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.15.3 '
30+ implementation " com.fasterxml.jackson.core:jackson-core:${ jacksonVersion } "
31+ implementation " com.fasterxml.jackson.core:jackson-annotations:${ jacksonVersion } "
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 // Forcing codec version to avoid vulnerability with older version in httpclient
@@ -46,16 +46,17 @@ dependencies {
4646 testImplementation ' org.xmlunit:xmlunit-legacy:2.9.1'
4747 testImplementation project(' :examples' )
4848
49- // Allows talking to the Manage API. It depends on the Java Client itself, which will usually be a slightly older
50- // version, but that should not have any impact on the tests.
51- testImplementation " com.marklogic:ml-app-deployer:4.7.0"
49+ // Allows talking to the Manage API.
50+ testImplementation (" com.marklogic:ml-app-deployer:4.8.0" ) {
51+ exclude module : " marklogic-client-api"
52+ }
5253
5354 // Starting with mockito 5.x, Java 11 is required, so sticking with 4.x as we have to support Java 8.
5455 testImplementation " org.mockito:mockito-core:4.11.0"
5556 testImplementation " org.mockito:mockito-inline:4.11.0"
5657 testImplementation " com.squareup.okhttp3:mockwebserver:4.12.0"
5758
58- testImplementation ' com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.15.3 '
59+ testImplementation " com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${ jacksonVersion } "
5960 testImplementation ' ch.qos.logback:logback-classic:1.3.14'
6061 // schema validation issue with testImplementation 'xerces:xercesImpl:2.12.0'
6162 testImplementation ' org.opengis.cite.xerces:xercesImpl-xsd11:2.12-beta-r1667115'
0 commit comments