Skip to content

Commit ec94593

Browse files
committed
Update dependency library for jackson-databind to version 2.9.8
1 parent 7e7d202 commit ec94593

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,7 @@
2525
### V1.3.0-SNAPSHOT
2626
+ Update test-suites framework to cover more use-case scenarios
2727
+ Add Utility to read from PKI Key with PEM format
28-
+ Update README documentation
28+
+ Update README documentation
29+
### V1.3.1-SNAPSHOT
30+
+ Update dependency library for jackson-databind to version 2.9.8
31+
+ Update mvn command to pull centralised unit-test cases from github repository

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ mvn install
6363
<dependency>
6464
<groupId>com.api.util</groupId>
6565
<artifactId>ApiSecurity</artifactId>
66-
<version>1.3.0-SNAPSHOT</version>
66+
<version>1.3.1-SNAPSHOT</version>
6767
</dependency>
6868
```
6969

@@ -136,7 +136,7 @@ repositories {
136136
mavenLocal()
137137
}
138138
dependencies {
139-
compile group: 'com.api.util', name: 'ApiSecurity', version: '1.3.0-SNAPSHOT'
139+
compile group: 'com.api.util', name: 'ApiSecurity', version: '1.3.1-SNAPSHOT'
140140
}
141141
142142
```

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'com.github.kt3k.coveralls' version '2.6.3'
55
}
66

7-
version '1.3.0-SNAPSHOT'
7+
version '1.3.1-SNAPSHOT'
88

99
tasks.withType(JavaCompile) {
1010
options.encoding = "UTF-8"
@@ -18,7 +18,7 @@ dependencies {
1818
//compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
1919
compile group: 'commons-lang', name: 'commons-lang', version: '2.4'
2020
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
21-
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.7'
21+
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.8'
2222
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
2323
compile group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.60'
2424
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.25'

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.api.util</groupId>
44
<artifactId>ApiSecurity</artifactId>
5-
<version>1.3.0-SNAPSHOT</version>
5+
<version>1.3.1-SNAPSHOT</version>
66
<build>
77
<plugins>
88
<plugin>
@@ -80,7 +80,7 @@
8080
<dependency>
8181
<groupId>com.fasterxml.jackson.core</groupId>
8282
<artifactId>jackson-databind</artifactId>
83-
<version>2.9.7</version>
83+
<version>2.9.8</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>com.googlecode.json-simple</groupId>

0 commit comments

Comments
 (0)