Files
spring-graphql/samples/webflux-websocket/build.gradle
Rossen Stoyanchev 645cf21f17 Update dependencies
2021-04-14 21:24:04 +01:00

20 lines
658 B
Groovy

plugins {
id 'org.springframework.boot' version '2.4.4'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
description = "GraphQL over WebSocket With Spring WebFlux Sample"
sourceCompatibility = '1.8'
dependencies {
implementation project(':graphql-spring-boot-starter')
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}