diff options
Diffstat (limited to 'rest-services')
3 files changed, 5 insertions, 7 deletions
diff --git a/rest-services/aai-client/pom.xml b/rest-services/aai-client/pom.xml index e0cd3b55..b69781e3 100644 --- a/rest-services/aai-client/pom.xml +++ b/rest-services/aai-client/pom.xml @@ -33,6 +33,10 @@ <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + </dependency> <dependency> <groupId>org.junit.jupiter</groupId> @@ -49,7 +53,5 @@ <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> - - </dependencies> </project>
\ No newline at end of file diff --git a/rest-services/aai-client/src/main/java/org/onap/dcaegen2/services/sdk/rest/services/aai/client/service/AaiReactiveWebClientFactory.java b/rest-services/aai-client/src/main/java/org/onap/dcaegen2/services/sdk/rest/services/aai/client/service/AaiReactiveWebClientFactory.java index 1b9e57f4..0ed4fb4b 100644 --- a/rest-services/aai-client/src/main/java/org/onap/dcaegen2/services/sdk/rest/services/aai/client/service/AaiReactiveWebClientFactory.java +++ b/rest-services/aai-client/src/main/java/org/onap/dcaegen2/services/sdk/rest/services/aai/client/service/AaiReactiveWebClientFactory.java @@ -84,7 +84,6 @@ public class AaiReactiveWebClientFactory { SslContext sslContext = createSslContext(); - ClientHttpConnector reactorClientHttpConnector = new ReactorClientHttpConnector( HttpClient.create().secure(sslContextSpec -> sslContextSpec.sslContext(sslContext))); diff --git a/rest-services/common-dependency/pom.xml b/rest-services/common-dependency/pom.xml index cc9c8ad3..f2d6b450 100644 --- a/rest-services/common-dependency/pom.xml +++ b/rest-services/common-dependency/pom.xml @@ -45,9 +45,6 @@ <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-web</artifactId> - </dependency> + </dependencies> </project>
\ No newline at end of file |