feign-reactive
feign-reactive copied to clipboard
Possible to remove Spring Cloud dependencies?
Hello I would like to know if its possible to remove the Spring Cloud dependencies from:
<groupId>com.playtika.reactivefeign</groupId>
<artifactId>feign-reactor-spring-configuration</artifactId>
When updating Spring Boot, it always lacks support. I have found the following transitive dependencies:
<artifactId>spring-cloud-commons</artifactId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-context</artifactId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-openfeign-core</artifactId> <groupId>org.springframework.cloud</groupId>
Maybe its possible to just use OpenFeign instead? Once I remove this dependencies, I get:
Caused by: java.lang.ClassNotFoundException: org.springframework.cloud.context.named.NamedContextFactory$Specification
Thank you for any help on this!