Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(dependency): replace rxjava with rxjava3 during upgrade of s…
…pring boot 3.0.x While upgrading the spring boot to 3.0.13 and spring cloud 2022.0.5, encountered the below errors during build process of kork-stackdriver module: ``` > Task :kork-stackdriver:compileJava FAILED /kork/kork-stackdriver/src/main/java/com/netflix/spinnaker/config/StackdriverConfig.java:41: error: package rx does not exist import rx.Observable; ^ /kork/kork-stackdriver/src/main/java/com/netflix/spinnaker/config/StackdriverConfig.java:42: error: package rx does not exist import rx.Scheduler; ^ /kork/kork-stackdriver/src/main/java/com/netflix/spinnaker/config/StackdriverConfig.java:43: error: package rx.schedulers does not exist import rx.schedulers.Schedulers; ^ 3 errors ``` Spring boot 3.x deprecated and removed rxjava, and rxjava3 has been added. So, update the dependency. https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.0-Migration-Guide#rxjava
- Loading branch information