Skip to content

Commit 1ef503a

Browse files
Merge pull request #410 from dmitraver/jackson-version-update
Updates jackson dependencies to the latest version.
2 parents 0b7f335 + 9722ac1 commit 1ef503a

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>
@@ -102,17 +105,17 @@
102105
<dependency>
103106
<groupId>com.fasterxml.jackson.core</groupId>
104107
<artifactId>jackson-core</artifactId>
105-
<version>2.5.3</version>
108+
<version>${jackson.version}</version>
106109
</dependency>
107110
<dependency>
108111
<groupId>com.fasterxml.jackson.core</groupId>
109112
<artifactId>jackson-annotations</artifactId>
110-
<version>2.5.3</version>
113+
<version>${jackson.version}</version>
111114
</dependency>
112115
<dependency>
113116
<groupId>com.fasterxml.jackson.core</groupId>
114117
<artifactId>jackson-databind</artifactId>
115-
<version>2.5.3</version>
118+
<version>${jackson.version}</version>
116119
</dependency>
117120
<dependency>
118121
<groupId>junit</groupId>

0 commit comments

Comments
 (0)