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>
<!--\r
~ Copyright © 2017-2018 AT&T Intellectual Property.\r
~\r
+ ~ Modifications Copyright © 2018 IBM.\r
+ ~\r
~ Licensed under the Apache License, Version 2.0 (the "License");\r
~ you may not use this file except in compliance with the License.\r
~ You may obtain a copy of the License at\r
<artifactId>spring-boot-starter-actuator</artifactId>\r
</dependency>\r
<dependency>\r
- <groupId>org.springframework.boot</groupId>\r
- <artifactId>spring-boot-devtools</artifactId>\r
- <optional>true</optional>\r
+ <groupId>org.powermock</groupId>\r
+ <artifactId>powermock-api-mockito2</artifactId>\r
+ <scope>test</scope>\r
</dependency>\r
<dependency>\r
<groupId>org.springframework.boot</groupId>\r
<artifactId>spring-boot-starter-test</artifactId>\r
<scope>test</scope>\r
</dependency>\r
+ <dependency>\r
+ <groupId>org.jetbrains.kotlin</groupId>\r
+ <artifactId>kotlin-test</artifactId>\r
+ <scope>test</scope>\r
+ </dependency>\r
+ <dependency>\r
+ <groupId>io.projectreactor</groupId>\r
+ <artifactId>reactor-test</artifactId>\r
+ <scope>test</scope>\r
+ </dependency>\r
</dependencies>\r
<build>\r
<resources>\r
<!--\r
~ Copyright © 2017-2018 AT&T Intellectual Property.\r
~\r
+ ~ Modifications Copyright © 2018 IBM.\r
+ ~\r
~ Licensed under the Apache License, Version 2.0 (the "License");\r
~ you may not use this file except in compliance with the License.\r
~ You may obtain a copy of the License at\r
<groupId>org.yaml</groupId>\r
<artifactId>snakeyaml</artifactId>\r
</dependency>\r
+ <dependency>\r
+ <groupId>org.jetbrains.kotlin</groupId>\r
+ <artifactId>kotlin-test</artifactId>\r
+ <scope>test</scope>\r
+ </dependency>\r
+ <dependency>\r
+ <groupId>junit</groupId>\r
+ <artifactId>junit</artifactId>\r
+ </dependency>\r
</dependencies>\r
\r
</project>\r
<!--\r
~ Copyright © 2017-2018 AT&T Intellectual Property.\r
~\r
+ ~ Modifications Copyright © 2018 IBM.\r
+ ~\r
~ Licensed under the Apache License, Version 2.0 (the "License");\r
~ you may not use this file except in compliance with the License.\r
~ You may obtain a copy of the License at\r
<groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>\r
<artifactId>core</artifactId>\r
</dependency>\r
+ <dependency>\r
+ <groupId>org.jetbrains.kotlin</groupId>\r
+ <artifactId>kotlin-test</artifactId>\r
+ <scope>test</scope>\r
+ </dependency>\r
</dependencies>\r
\r
\r
<!--\r
~ Copyright © 2017-2018 AT&T Intellectual Property.\r
~\r
+ ~ Modifications Copyright © 2018 IBM.\r
+ ~\r
~ Licensed under the Apache License, Version 2.0 (the "License");\r
~ you may not use this file except in compliance with the License.\r
~ You may obtain a copy of the License at\r
<!--<artifactId>mariadb-java-client</artifactId>-->\r
<!--</dependency>-->\r
\r
+ <dependency>\r
+ <groupId>org.powermock</groupId>\r
+ <artifactId>powermock-api-mockito2</artifactId>\r
+ <scope>test</scope>\r
+ </dependency>\r
<dependency>\r
<groupId>org.springframework.boot</groupId>\r
<artifactId>spring-boot-starter-test</artifactId>\r
<scope>test</scope>\r
</dependency>\r
+ <dependency>\r
+ <groupId>org.jetbrains.kotlin</groupId>\r
+ <artifactId>kotlin-test</artifactId>\r
+ <scope>test</scope>\r
+ </dependency>\r
+ <dependency>\r
+ <groupId>io.projectreactor</groupId>\r
+ <artifactId>reactor-test</artifactId>\r
+ <scope>test</scope>\r
+ </dependency>\r
</dependencies>\r
</project>\r
\r
<!--
~ 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
<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>
<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>
<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>