samples-custom-consent-authorizationserver.gradle 805 B

12345678910111213141516171819202122232425
  1. plugins {
  2. id "org.springframework.boot" version "2.7.0"
  3. id "io.spring.dependency-management" version "1.0.11.RELEASE"
  4. id "java"
  5. }
  6. group = project.rootProject.group
  7. version = project.rootProject.version
  8. sourceCompatibility = "1.8"
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. implementation "org.springframework.boot:spring-boot-starter-web"
  14. implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
  15. implementation "org.springframework.boot:spring-boot-starter-security"
  16. implementation project(":spring-security-oauth2-authorization-server")
  17. testImplementation "org.springframework.boot:spring-boot-starter-test"
  18. testImplementation "org.springframework.security:spring-security-test"
  19. testImplementation "junit:junit"
  20. testImplementation "net.sourceforge.htmlunit:htmlunit"
  21. }