diff options
author | Marcin Migdal <marcin.migdal@nokia.com> | 2018-12-07 17:17:54 +0100 |
---|---|---|
committer | Marcin Migdal <marcin.migdal@nokia.com> | 2018-12-07 17:17:54 +0100 |
commit | 75fca44f7871dd0950bdbab1f715393ed46d271a (patch) | |
tree | 9d6ac23f04b80bfe31621dd63c66fcac91652f92 /rest-services | |
parent | a8115e1bf461b2d0ab719cc8201e69f37a45b0f3 (diff) |
Remove transient dependencies
Change-Id: I8f5fc2630d9cc9bd4a00798dfc660e7bbd0b1e33
Issue-ID: DCAEGEN2-1021
Signed-off-by: mmigdal <marcin.migdal@nokia.com>
Diffstat (limited to 'rest-services')
-rw-r--r-- | rest-services/aai-client/pom.xml | 31 | ||||
-rw-r--r-- | rest-services/cbs-client/pom.xml | 2 | ||||
-rw-r--r-- | rest-services/dmaap-client/pom.xml | 30 |
3 files changed, 7 insertions, 56 deletions
diff --git a/rest-services/aai-client/pom.xml b/rest-services/aai-client/pom.xml index efec237f..e0cd3b55 100644 --- a/rest-services/aai-client/pom.xml +++ b/rest-services/aai-client/pom.xml @@ -21,12 +21,9 @@ <dependencies> <dependency> - <groupId>org.immutables</groupId> - <artifactId>value</artifactId> - </dependency> - <dependency> - <groupId>io.projectreactor.netty</groupId> - <artifactId>reactor-netty</artifactId> + <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId> + <artifactId>common-dependency</artifactId> + <version>1.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.springframework</groupId> @@ -36,22 +33,6 @@ <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-web</artifactId> - </dependency> - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - </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.junit.jupiter</groupId> @@ -68,11 +49,7 @@ <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> - </dependency> + </dependencies> </project>
\ No newline at end of file diff --git a/rest-services/cbs-client/pom.xml b/rest-services/cbs-client/pom.xml index 59981f7e..052c614d 100644 --- a/rest-services/cbs-client/pom.xml +++ b/rest-services/cbs-client/pom.xml @@ -31,7 +31,6 @@ <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> - <scope>provided</scope> </dependency> <dependency> <groupId>org.immutables</groupId> @@ -44,7 +43,6 @@ <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> - <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> diff --git a/rest-services/dmaap-client/pom.xml b/rest-services/dmaap-client/pom.xml index 6e01eaf5..295d1d31 100644 --- a/rest-services/dmaap-client/pom.xml +++ b/rest-services/dmaap-client/pom.xml @@ -21,12 +21,9 @@ <dependencies> <dependency> - <groupId>org.immutables</groupId> - <artifactId>gson</artifactId> - </dependency> - <dependency> - <groupId>org.immutables</groupId> - <artifactId>value</artifactId> + <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId> + <artifactId>common-dependency</artifactId> + <version>1.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.springframework</groupId> @@ -49,30 +46,9 @@ <artifactId>httpclient</artifactId> </dependency> <dependency> - <groupId>io.projectreactor.netty</groupId> - <artifactId>reactor-netty</artifactId> - </dependency> - <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </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>ch.qos.logback</groupId> - <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> |