diff options
author | wasala <przemyslaw.wasala@nokia.com> | 2018-11-16 15:08:25 +0100 |
---|---|---|
committer | Przemyslaw Wasala <przemyslaw.wasala@nokia.com> | 2018-11-19 14:02:36 +0000 |
commit | ec06ba416837d760e0d17de953f956ab87cd4248 (patch) | |
tree | 923bfa95791b7acfd4f477d3dcd407f4a90a56eb /rest-services/cbs-client/pom.xml | |
parent | 7b0c16b815d642ec4281324c0e46c2aba339004b (diff) |
Added cbs API
* one main cloudConfigurationProvider
* Mixing string and object property passed to API
* added maven-shade plugin
Change-Id: Idcd66fd70c20c859b5b6f94524f3fdb709fdfc57
Issue-ID: DCAEGEN2-982
Signed-off-by: wasala <przemyslaw.wasala@nokia.com>
Diffstat (limited to 'rest-services/cbs-client/pom.xml')
-rw-r--r-- | rest-services/cbs-client/pom.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/rest-services/cbs-client/pom.xml b/rest-services/cbs-client/pom.xml index 5a03285e..ecde84ce 100644 --- a/rest-services/cbs-client/pom.xml +++ b/rest-services/cbs-client/pom.xml @@ -21,6 +21,36 @@ <dependencies> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-webflux</artifactId> + </dependency> + <dependency> + <groupId>org.immutables</groupId> + <artifactId>value</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.immutables</groupId> + <artifactId>gson</artifactId> + </dependency> + <dependency> + <groupId>io.projectreactor</groupId> + <artifactId>reactor-core</artifactId> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jul-to-slf4j</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + </dependency> + <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> @@ -45,6 +75,15 @@ <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>io.projectreactor</groupId> + <artifactId>reactor-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </dependency> </dependencies> </project> |