build.gradle 565 B

12345678910111213141516
  1. apply from: BOOT_SAMPLE_GRADLE
  2. springBoot {
  3. mainClass = 'org.springframework.security.samples.HelloWorldApplication'
  4. }
  5. dependencies {
  6. compile "org.springframework.boot:spring-boot-starter-web",
  7. "org.springframework.boot:spring-boot-starter-thymeleaf",
  8. "org.thymeleaf.extras:thymeleaf-extras-springsecurity4:2.1.2.RELEASE",
  9. project(":spring-security-config"),
  10. project(":spring-security-web")
  11. testCompile "org.springframework.boot:spring-boot-starter-test",
  12. project(":spring-security-test")
  13. }