mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-03-25 09:28:23 +00:00
13 lines
342 B
Groovy
13 lines
342 B
Groovy
apply from: BOOT_SAMPLE_GRADLE
|
|
|
|
springBoot {
|
|
mainClass = 'org.springframework.security.samples.InsecureApplication'
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.springframework.boot:spring-boot-starter-web",
|
|
"org.springframework.boot:spring-boot-starter-thymeleaf"
|
|
|
|
testCompile "org.springframework.boot:spring-boot-starter-test"
|
|
}
|