Skip to content

Commit 1169eb9

Browse files
authored
Merge pull request #1504 from marklogic/feature/jackson-bump
Bumping Jackson to 2.14.1
2 parents 1e78192 + 2b3a23e commit 1169eb9

File tree

6 files changed

+68
-68
lines changed

6 files changed

+68
-68
lines changed

NOTICE.txt

Lines changed: 45 additions & 45 deletions
Large diffs are not rendered by default.

examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
api 'com.squareup.okhttp3:okhttp:4.10.0'
1919
api 'io.github.rburgst:okhttp-digest:2.7'
2020
api 'org.slf4j:slf4j-api:1.7.36'
21-
api 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
21+
api 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
2222
api 'org.hsqldb:hsqldb:2.5.2'
2323
api 'org.jdom:jdom2:2.0.6.1'
2424
api 'dom4j:dom4j:1.6.1'

marklogic-client-api-functionaltests/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ task testSandbox(type:Test) {
2020

2121
dependencies {
2222
implementation project (':marklogic-client-api')
23-
implementation group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.0'
24-
implementation group: 'org.slf4j', name: 'slf4j-api', version:'1.7.36'
23+
implementation 'org.skyscreamer:jsonassert:1.5.0'
24+
implementation 'org.slf4j:slf4j-api:1.7.36'
2525
implementation 'commons-io:commons-io:2.11.0'
26-
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version:'4.10.0'
27-
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.4'
28-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
26+
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
27+
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.1'
28+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
2929
implementation "org.jdom:jdom2:2.0.6.1"
30-
implementation "com.marklogic:ml-app-deployer:4.3.6"
30+
implementation "com.marklogic:ml-app-deployer:4.4.0"
3131

32-
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version:'1.2.11'
32+
testImplementation 'ch.qos.logback:logback-classic:1.3.5'
3333
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.1'
3434
testImplementation 'org.xmlunit:xmlunit-legacy:2.9.0'
3535
testImplementation 'org.apache.commons:commons-lang3:3.12.0'

marklogic-client-api/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ dependencies {
2121
implementation 'com.sun.mail:javax.mail:1.6.2'
2222
implementation 'javax.ws.rs:javax.ws.rs-api:2.1.1'
2323
implementation 'org.slf4j:slf4j-api:1.7.36'
24-
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.4'
25-
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.4'
26-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
27-
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.13.4'
28-
24+
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.1'
25+
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.1'
26+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
27+
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.14.1'
28+
2929
// Only used by extras (which some examples then depend on)
3030
compileOnly 'org.apache.httpcomponents:httpclient:4.5.14'
3131
compileOnly 'org.jdom:jdom2:2.0.6.1'
@@ -40,10 +40,10 @@ dependencies {
4040
// version, but that should not have any impact on the tests.
4141
testImplementation "com.marklogic:ml-app-deployer:4.4.0"
4242

43-
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.4'
44-
testImplementation "org.mockito:mockito-core:4.9.0"
45-
testImplementation "org.mockito:mockito-inline:4.9.0"
46-
testImplementation 'ch.qos.logback:logback-classic:1.2.11'
43+
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1'
44+
testImplementation "org.mockito:mockito-core:4.10.0"
45+
testImplementation "org.mockito:mockito-inline:4.10.0"
46+
testImplementation 'ch.qos.logback:logback-classic:1.3.5'
4747
// schema validation issue with testImplementation 'xerces:xercesImpl:2.12.0'
4848
testImplementation 'org.opengis.cite.xerces:xercesImpl-xsd11:2.12-beta-r1667115'
4949
testImplementation 'org.apache.commons:commons-lang3:3.12.0'

ml-development-tools/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ dependencies {
1212
compileOnly gradleApi()
1313
implementation project(':marklogic-client-api')
1414
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20'
15-
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.13.4'
16-
implementation 'com.networknt:json-schema-validator:1.0.73'
15+
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.14.1'
16+
implementation 'com.networknt:json-schema-validator:1.0.76'
1717

1818
// Not yet migrating this project to JUnit 5. Will reconsider it once we have a reason to enhance
1919
// this project.

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,25 +70,25 @@ It is not intended to be used to build this project.
7070
<dependency>
7171
<groupId>com.fasterxml.jackson.core</groupId>
7272
<artifactId>jackson-core</artifactId>
73-
<version>2.13.4</version>
73+
<version>2.14.1</version>
7474
<scope>runtime</scope>
7575
</dependency>
7676
<dependency>
7777
<groupId>com.fasterxml.jackson.core</groupId>
7878
<artifactId>jackson-annotations</artifactId>
79-
<version>2.13.4</version>
79+
<version>2.14.1</version>
8080
<scope>runtime</scope>
8181
</dependency>
8282
<dependency>
8383
<groupId>com.fasterxml.jackson.core</groupId>
8484
<artifactId>jackson-databind</artifactId>
85-
<version>2.13.4.2</version>
85+
<version>2.14.1</version>
8686
<scope>runtime</scope>
8787
</dependency>
8888
<dependency>
8989
<groupId>com.fasterxml.jackson.dataformat</groupId>
9090
<artifactId>jackson-dataformat-csv</artifactId>
91-
<version>2.13.4</version>
91+
<version>2.14.1</version>
9292
<scope>runtime</scope>
9393
</dependency>
9494
</dependencies>

0 commit comments

Comments
 (0)