spring-security-samples-boot-helloworld.gradle 462 B

123456789101112
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. dependencies {
  3. compile project(':spring-security-config')
  4. compile project(':spring-security-web')
  5. compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
  6. compile 'org.springframework.boot:spring-boot-starter-web'
  7. compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
  8. testCompile project(':spring-security-test')
  9. testCompile 'org.springframework.boot:spring-boot-starter-test'
  10. }