diff options
author | Marcin Migdal <marcin.migdal@nokia.com> | 2018-12-07 15:52:53 +0100 |
---|---|---|
committer | Marcin Migdal <marcin.migdal@nokia.com> | 2018-12-07 15:52:53 +0100 |
commit | 307e825f082109bc7f2b959e5f06399f8c4d5b05 (patch) | |
tree | 3699fb6d0bbd2f7233198a96b4cbc7cc8c2e17f5 | |
parent | d25605a6d776cc41a416333edde54701c73a08aa (diff) |
Remove junit-platform-launche
Change-Id: Id66ece25205fc092d6563bb48293a522954a1392
Issue-ID: DCAEGEN2-1021
Signed-off-by: mmigdal <marcin.migdal@nokia.com>
-rw-r--r-- | pom.xml | 6 | ||||
-rw-r--r-- | rest-services/cbs-client/pom.xml | 14 | ||||
-rw-r--r-- | rest-services/common-dependency/pom.xml | 1 | ||||
-rw-r--r-- | rest-services/dmaap-client/pom.xml | 34 |
4 files changed, 19 insertions, 36 deletions
@@ -192,12 +192,6 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.junit.platform</groupId> - <artifactId>junit-platform-launcher</artifactId> - <version>${junit-platform.version}</version> - <scope>test</scope> - </dependency> - <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter.version}</version> diff --git a/rest-services/cbs-client/pom.xml b/rest-services/cbs-client/pom.xml index a08d3d15..59981f7e 100644 --- a/rest-services/cbs-client/pom.xml +++ b/rest-services/cbs-client/pom.xml @@ -25,6 +25,10 @@ <artifactId>spring-webflux</artifactId> </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </dependency> + <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <scope>provided</scope> @@ -50,17 +54,13 @@ <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </dependency> + <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> - <groupId>org.junit.platform</groupId> - <artifactId>junit-platform-launcher</artifactId> - <scope>test</scope> - </dependency> - <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> @@ -70,10 +70,6 @@ <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context</artifactId> - </dependency> </dependencies> </project> diff --git a/rest-services/common-dependency/pom.xml b/rest-services/common-dependency/pom.xml index 7289514a..cc9c8ad3 100644 --- a/rest-services/common-dependency/pom.xml +++ b/rest-services/common-dependency/pom.xml @@ -49,6 +49,5 @@ <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> - </dependencies> </project>
\ No newline at end of file diff --git a/rest-services/dmaap-client/pom.xml b/rest-services/dmaap-client/pom.xml index 3885ee1b..6e01eaf5 100644 --- a/rest-services/dmaap-client/pom.xml +++ b/rest-services/dmaap-client/pom.xml @@ -21,22 +21,6 @@ <dependencies> <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-core</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.platform</groupId> - <artifactId>junit-platform-launcher</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-engine</artifactId> - <scope>test</scope> - </dependency> - - <dependency> <groupId>org.immutables</groupId> <artifactId>gson</artifactId> </dependency> @@ -44,7 +28,6 @@ <groupId>org.immutables</groupId> <artifactId>value</artifactId> </dependency> - <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> @@ -86,14 +69,25 @@ <artifactId>logback-classic</artifactId> </dependency> <dependency> + <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId> + <artifactId>common-dependency</artifactId> + <version>1.0.0-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> <dependency> - <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId> - <artifactId>common-dependency</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId> |