diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2022-09-24 01:01:01 +0000 |
---|---|---|
committer | Vijay Venkatesh Kumar <vv770d@att.com> | 2022-09-24 01:16:58 +0000 |
commit | a2f66ad0ad72e5ea517a5670f131562af4eabc4b (patch) | |
tree | e69162fff3ac73320a6b47a0bef741b25cf6a794 | |
parent | de9c19cc019fdf6f87d781f708825a55a908f8a2 (diff) |
Fix app startup error1.4.3
+ SDK version bump
Change-Id: I2637e9ad0b8c616f7e59dfa2c4eed5dca13c822a
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Issue-ID: DCAEGEN2-3269
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
-rwxr-xr-x | Changelog.md | 3 | ||||
-rwxr-xr-x | UniversalVesAdapter/pom.xml | 11 |
2 files changed, 9 insertions, 5 deletions
diff --git a/Changelog.md b/Changelog.md index e8c35ac..53fc15e 100755 --- a/Changelog.md +++ b/Changelog.md @@ -4,8 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [1.4.3] - 2022/07/18 +## [1.4.3] - 2022/09/23 - [DCAEGEN2-3217] - dcaegen2-services-mapper vulnerability updates + - [DCAEGEN2-3269] - Fix application startup error + SDK version bump ## [1.4.2] - 2022/06/14 - [DCAEGEN2-3167] - CodeCoverage improvement for dcaegen2-services-mapper diff --git a/UniversalVesAdapter/pom.xml b/UniversalVesAdapter/pom.xml index 7b6ea09..24864cd 100755 --- a/UniversalVesAdapter/pom.xml +++ b/UniversalVesAdapter/pom.xml @@ -53,9 +53,12 @@ content/sites/site/org/onap/dcaegen2/services/mapper/${project.artifactId}/${project.version} </site.path> <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> - + <jackson.core.version>2.13.3</jackson.core.version> <!-- DCAE SDK version --> - <sdk.version>1.8.7</sdk.version> + <sdk.version>1.8.10</sdk.version> + + <!-- OGR override --> + <onap-gerrit-review>-changelog-missing</onap-gerrit-review> </properties> <dependencies> @@ -206,12 +209,12 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> - <version>2.12.6</version> + <version>${jackson.core.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> - <version>2.13.3</version> + <version>${jackson.core.version}</version> </dependency> <dependency> <groupId>hsqldb</groupId> |