Skip to content

Commit 9722ac1

Browse files
committed
Updates jackson dependencies to the latest version.
1 parent 338cb04 commit 9722ac1

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ buildscript {
4646

4747
dependencies {
4848
compile 'com.sendgrid:java-http-client:4.1.0'
49-
compile 'com.fasterxml.jackson.core:jackson-core:2.5.3'
50-
compile 'com.fasterxml.jackson.core:jackson-annotations:2.5.3'
51-
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.3'
49+
compile 'com.fasterxml.jackson.core:jackson-core:2.9.2'
50+
compile 'com.fasterxml.jackson.core:jackson-annotations:2.9.2'
51+
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.2'
5252
testCompile group: 'junit', name: 'junit', version: '4.12'
5353
}
5454

pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
<distribution>repo</distribution>
2020
</license>
2121
</licenses>
22+
<properties>
23+
<jackson.version>2.9.2</jackson.version>
24+
</properties>
2225
<scm>
2326
<url>https://github.com/sendgrid/sendgrid-java</url>
2427
<connection>scm:git:[email protected]:sendgrid/sendgrid-java.git</connection>
@@ -94,17 +97,17 @@
9497
<dependency>
9598
<groupId>com.fasterxml.jackson.core</groupId>
9699
<artifactId>jackson-core</artifactId>
97-
<version>2.5.3</version>
100+
<version>${jackson.version}</version>
98101
</dependency>
99102
<dependency>
100103
<groupId>com.fasterxml.jackson.core</groupId>
101104
<artifactId>jackson-annotations</artifactId>
102-
<version>2.5.3</version>
105+
<version>${jackson.version}</version>
103106
</dependency>
104107
<dependency>
105108
<groupId>com.fasterxml.jackson.core</groupId>
106109
<artifactId>jackson-databind</artifactId>
107-
<version>2.5.3</version>
110+
<version>${jackson.version}</version>
108111
</dependency>
109112
<dependency>
110113
<groupId>junit</groupId>

0 commit comments

Comments
 (0)