diff options
author | Jegadeesh Babu <jegabab1@in.ibm.com> | 2019-05-02 23:29:26 +0530 |
---|---|---|
committer | Jegadeesh Babu <jegabab1@in.ibm.com> | 2019-05-02 18:07:19 +0000 |
commit | 7791b721b19906d59236167bf92cd221aedd21b0 (patch) | |
tree | 7d9369d56acafe0581202caf0c9eabd40a7a7d93 /dcae-analytics/dcae-analytics-web/pom.xml | |
parent | 769c2417b7ea0be3a79d6c9414b4960c50d33e6a (diff) |
Version updated to adhere Dublin Release compliance
Security Compiance
Issue-ID: DCAEGEN2-1457
Change-Id: Ia1c3047818d883b22935037457891eae368d2eec
Signed-off-by: Jegadeesh Babu <jegabab1@in.ibm.com>
Diffstat (limited to 'dcae-analytics/dcae-analytics-web/pom.xml')
-rw-r--r-- | dcae-analytics/dcae-analytics-web/pom.xml | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/dcae-analytics/dcae-analytics-web/pom.xml b/dcae-analytics/dcae-analytics-web/pom.xml index 4a7603b..b160604 100644 --- a/dcae-analytics/dcae-analytics-web/pom.xml +++ b/dcae-analytics/dcae-analytics-web/pom.xml @@ -66,6 +66,10 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> + <exclusion> + <groupId>io.undertow</groupId> + <artifactId>undertow-core</artifactId> + </exclusion> </exclusions> </dependency> @@ -130,17 +134,23 @@ <groupId>${project.groupId}</groupId> <artifactId>dcae-analytics-test</artifactId> </dependency> + <!-- https://mvnrepository.com/artifact/io.undertow/undertow-core --> + <dependency> + <groupId>io.undertow</groupId> + <artifactId>undertow-core</artifactId> + <version>2.0.17.Final</version> + </dependency> </dependencies> <dependencyManagement> - <dependencies> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-core</artifactId> - <version>5.0.11.RELEASE</version> - </dependency> - </dependencies> + <dependencies> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>5.0.11.RELEASE</version> + </dependency> + </dependencies> </dependencyManagement> </project> |