aboutsummaryrefslogtreecommitdiffstats
path: root/ms/controllerblueprints/parent/pom.xml
diff options
context:
space:
mode:
authorBrinda Santh <brindasanth@in.ibm.com>2018-08-23 23:34:05 -0400
committerMuthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>2018-08-24 19:53:56 +0000
commitbddb076486a7c3def39687f6f9aaa0fc060d85e6 (patch)
treef99f8c8d70b31a87cc38cfe5d83c20580ea27235 /ms/controllerblueprints/parent/pom.xml
parent00bffa6a864d04e7093b6d70a9d321c068d48c7a (diff)
Controller Blueprints Microservice
Add Powermock compatable version in OpenJDK Ubuntu Machine for Spring boot 2 Junit testcase and clean maven dependencies Change-Id: Icac038b0d68fdd0edbb1aac9bc2bccb77d627289 Issue-ID: CCSDK-483 Signed-off-by: Brinda Santh <brindasanth@in.ibm.com>
Diffstat (limited to 'ms/controllerblueprints/parent/pom.xml')
-rw-r--r--ms/controllerblueprints/parent/pom.xml40
1 files changed, 17 insertions, 23 deletions
diff --git a/ms/controllerblueprints/parent/pom.xml b/ms/controllerblueprints/parent/pom.xml
index e48c11342..19e55fe0b 100644
--- a/ms/controllerblueprints/parent/pom.xml
+++ b/ms/controllerblueprints/parent/pom.xml
@@ -2,6 +2,8 @@
<!--
~ Copyright © 2017-2018 AT&T Intellectual Property.
~
+ ~ Modifications Copyright © 2018 IBM.
+ ~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
@@ -116,12 +118,7 @@
<artifactId>h2</artifactId>
<version>${h2database.version}</version>
</dependency>
- <dependency>
- <groupId>org.jetbrains.kotlin</groupId>
- <artifactId>kotlin-test</artifactId>
- <version>${kotlin.version}</version>
- <scope>test</scope>
- </dependency>
+
<!-- Application Components -->
<dependency>
@@ -144,6 +141,20 @@
<artifactId>resource-dict</artifactId>
<version>${project.version}</version>
</dependency>
+
+ <!-- Testing Dependencies -->
+ <dependency>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-api-mockito2</artifactId>
+ <version>1.7.4</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jetbrains.kotlin</groupId>
+ <artifactId>kotlin-test</artifactId>
+ <version>${kotlin.version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</dependencyManagement>
@@ -188,25 +199,8 @@
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
</dependency>
- <!-- test -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jetbrains.kotlin</groupId>
- <artifactId>kotlin-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>io.projectreactor</groupId>
- <artifactId>reactor-test</artifactId>
- <scope>test</scope>
- </dependency>
</dependencies>
-
<build>
<plugins>
<plugin>