diff options
author | Prudence Au <prudence.au@amdocs.com> | 2018-10-09 16:26:06 -0400 |
---|---|---|
committer | Prudence Au <prudence.au@amdocs.com> | 2018-10-09 16:26:06 -0400 |
commit | 309fb453bd417449a468cf8104ea0169507c8fd9 (patch) | |
tree | ee620da394ba346b3442f2b54e19bcf936e8246c | |
parent | 753fb3325ceaba2eec43c098ada6a0d72a647bc6 (diff) |
Fix critical CLM issues
Change-Id: Ib301081508b97cf0c535325718e30998e106caff
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
Issue-ID: LOG-618
-rw-r--r-- | pom.xml | 10 | ||||
-rw-r--r-- | version.properties | 2 |
2 files changed, 9 insertions, 3 deletions
@@ -5,7 +5,7 @@ <groupId>org.onap.logging-analytics.pomba</groupId> <artifactId>pomba-context-aggregator</artifactId> - <version>1.3.1</version> + <version>1.3.2-SNAPSHOT</version> <parent> <groupId>org.onap.oparent</groupId> @@ -28,7 +28,7 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> - <version>1.5.12.RELEASE</version> + <version>1.5.15.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> @@ -39,6 +39,7 @@ <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-security</artifactId> + <version>9.4.12.RC1</version> </dependency> <dependency> <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> @@ -46,6 +47,11 @@ <version>${dmaap.client.version}</version> </dependency> <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <version>1.2.3</version> + </dependency> + <dependency> <groupId>org.onap.aai</groupId> <artifactId>rest-client</artifactId> <version>${aai.rest.client.version}</version> diff --git a/version.properties b/version.properties index fb21064..0969948 100644 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=1 minor=3 -patch=1 +patch=2 base_version=${major}.${minor}.${patch} |