summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJegadeesh Babu <jegabab1@in.ibm.com>2019-05-02 23:29:26 +0530
committerJegadeesh Babu <jegabab1@in.ibm.com>2019-05-02 18:07:19 +0000
commit7791b721b19906d59236167bf92cd221aedd21b0 (patch)
tree7d9369d56acafe0581202caf0c9eabd40a7a7d93
parent769c2417b7ea0be3a79d6c9414b4960c50d33e6a (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>
-rw-r--r--dcae-analytics/dcae-analytics-tca-web/pom.xml13
-rw-r--r--dcae-analytics/dcae-analytics-web/pom.xml24
2 files changed, 30 insertions, 7 deletions
diff --git a/dcae-analytics/dcae-analytics-tca-web/pom.xml b/dcae-analytics/dcae-analytics-tca-web/pom.xml
index afa7d26..a878a0f 100644
--- a/dcae-analytics/dcae-analytics-tca-web/pom.xml
+++ b/dcae-analytics/dcae-analytics-tca-web/pom.xml
@@ -58,6 +58,13 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>io.undertow</groupId>
+ <artifactId>undertow-core</artifactId>
+ </exclusion>
+ </exclusions>
+
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
@@ -104,6 +111,12 @@
<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>
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>