Files
spring-graphql/samples/webmvc-http-security/build.gradle
rstoyanchev b40375f1f2 Pin version to 1.0.0-M5 in samples
This is necessary until Boot catches up with spring-graphql snapshots.
2022-03-07 10:39:59 +00:00

32 lines
1.0 KiB
Groovy

plugins {
id 'org.springframework.boot' version "${bootVersion}"
id 'java'
}
group = 'com.example'
description = "Secure GraphQL over HTTP with Spring MVC Sample"
sourceCompatibility = '1.8'
// ext['spring-graphql.version'] = version
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-graphql'
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.graphql:spring-graphql-test:1.0.0-M5'
testImplementation 'org.springframework:spring-webflux'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}