Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 7e4b8f0

Browse files
authored
Merge pull request #457 from marklogic-community/feature/bump-versions
Bumping Jackson to 2.12.7.1
2 parents 997a7aa + 2784583 commit 7e4b8f0

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

build.gradle

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,20 @@ plugins {
1010
group = "com.marklogic"
1111
version = "4.3.6"
1212

13-
sourceCompatibility = "8"
14-
targetCompatibility = "8"
13+
java {
14+
sourceCompatibility = 1.8
15+
targetCompatibility = 1.8
16+
}
1517

1618
repositories {
1719
mavenLocal()
1820
mavenCentral()
1921
}
2022

2123
dependencies {
22-
api 'com.marklogic:ml-javaclient-util:4.3.6'
23-
api 'org.springframework:spring-web:5.3.22'
24-
api 'com.fasterxml.jackson.core:jackson-databind:2.12.6.1'
24+
api 'com.marklogic:ml-javaclient-util:4.3.7'
25+
api 'org.springframework:spring-web:5.3.24'
26+
api 'com.fasterxml.jackson.core:jackson-databind:2.12.7.1'
2527

2628
implementation 'jaxen:jaxen:1.2.0'
2729
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
@@ -42,19 +44,19 @@ dependencies {
4244
// Required for Java 11
4345
implementation "javax.xml.bind:jaxb-api:2.3.1"
4446
implementation "com.sun.xml.bind:jaxb-core:2.3.0.1"
45-
implementation "com.sun.xml.bind:jaxb-impl:2.3.6"
47+
implementation "com.sun.xml.bind:jaxb-impl:2.3.7"
4648

4749
// Don't want to include this in the published jar, just the executable jar
4850
compileOnly "com.beust:jcommander:1.82"
49-
compileOnly "ch.qos.logback:logback-classic:1.2.11"
51+
compileOnly "ch.qos.logback:logback-classic:1.3.5"
5052

51-
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
52-
testImplementation 'org.springframework:spring-test:5.3.22'
53+
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.1'
54+
testImplementation 'org.springframework:spring-test:5.3.24'
5355
testImplementation 'commons-io:commons-io:2.11.0'
5456
testImplementation 'xmlunit:xmlunit:1.6'
5557

5658
// Forcing Spring to use logback for testing instead of commons-logging
57-
testImplementation "ch.qos.logback:logback-classic:1.2.11"
59+
testImplementation "ch.qos.logback:logback-classic:1.3.5"
5860
testImplementation "org.slf4j:jcl-over-slf4j:1.7.36"
5961
testImplementation "org.slf4j:slf4j-api:1.7.36"
6062
}

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ It is not intended to be used to build this project.
4040
<dependency>
4141
<groupId>com.marklogic</groupId>
4242
<artifactId>ml-javaclient-util</artifactId>
43-
<version>4.3.3</version>
43+
<version>4.3.7</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.springframework</groupId>
4848
<artifactId>spring-web</artifactId>
49-
<version>5.3.22</version>
49+
<version>5.3.24</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
<dependency>
@@ -112,7 +112,7 @@ It is not intended to be used to build this project.
112112
<dependency>
113113
<groupId>com.sun.xml.bind</groupId>
114114
<artifactId>jaxb-impl</artifactId>
115-
<version>2.3.6</version>
115+
<version>2.3.7</version>
116116
<scope>runtime</scope>
117117
</dependency>
118118
</dependencies>

0 commit comments

Comments
 (0)