samples-federated-identity-authorizationserver.gradle 858 B

12345678910111213141516171819
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. dependencies {
  3. compile 'org.springframework.boot:spring-boot-starter-web'
  4. compile 'org.springframework.boot:spring-boot-starter-security'
  5. compile 'org.springframework.boot:spring-boot-starter-oauth2-client'
  6. compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
  7. compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  8. compile 'org.webjars:webjars-locator-core'
  9. compile 'org.webjars:bootstrap:3.4.1'
  10. compile 'org.webjars:jquery:3.4.1'
  11. compile 'org.springframework.boot:spring-boot-starter-jdbc'
  12. compile project(':spring-security-oauth2-authorization-server')
  13. runtimeOnly 'com.h2database:h2'
  14. testCompile 'org.springframework.boot:spring-boot-starter-test'
  15. testCompile 'org.springframework.security:spring-security-test'
  16. testCompile 'net.sourceforge.htmlunit:htmlunit'
  17. }