spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-rsocket/build.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
576 B
Groovy
Raw Permalink Normal View History

plugins {
id "org.springframework.boot.starter"
}
description = "Starter for building RSocket clients and servers"
dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-json"))
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty"))
api("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
api("io.rsocket:rsocket-core")
api("io.rsocket:rsocket-transport-netty")
api("org.springframework:spring-messaging")
}