Files
spring-security/samples/boot/insecure/build.gradle
Joe Grandja 66980e827c Add Spring Boot Hello World guide
Add Spring Boot Hello World Guide

Fixes gh-3866
2016-05-13 14:05:29 -05:00

13 lines
384 B
Groovy

apply from: BOOT_SAMPLE_GRADLE
springBoot {
mainClass = 'org.springframework.security.samples.InsecureApplication'
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-web:1.3.3.RELEASE",
"org.springframework.boot:spring-boot-starter-thymeleaf:1.3.3.RELEASE"
testCompile "org.springframework.boot:spring-boot-starter-test:1.3.3.RELEASE"
}