
As Spring Framework removed support for RxJava 1.x and 2.x, we should do the same and only provide dependency management for RxJava 3.x. Closes gh-28212
12 lines
349 B
Groovy
12 lines
349 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for using Couchbase document-oriented database and Spring Data Couchbase Reactive"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
|
api("io.projectreactor:reactor-core")
|
|
api("org.springframework.data:spring-data-couchbase")
|
|
}
|