Files
spring-graphql/samples/webmvc-http-security/build.gradle
Rob Winch 7d854dbf47 Add webmvc-http-security
Closes gh-58
2021-06-28 14:17:16 -05:00

22 lines
770 B
Groovy

plugins {
id 'org.springframework.boot' version '2.5.0'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
description = "Secure GraphQL over HTTP with Spring MVC Sample"
sourceCompatibility = '1.8'
dependencies {
implementation project(':graphql-spring-boot-starter')
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation project(':spring-graphql-test')
testImplementation 'org.springframework:spring-webflux'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}