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

1234567891011121314
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. ext['thymeleaf.version'] = '3.0.9.RELEASE'
  3. dependencies {
  4. compile project(':spring-security-config')
  5. compile project(':spring-security-web')
  6. compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
  7. compile 'org.springframework.boot:spring-boot-starter-web'
  8. compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  9. testCompile project(':spring-security-test')
  10. testCompile 'org.springframework.boot:spring-boot-starter-test'
  11. }