samples-default-authorizationserver.gradle 854 B

1234567891011121314151617181920212223242526
  1. plugins {
  2. id "org.springframework.boot" version "2.7.16"
  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-security"
  15. implementation "org.springframework.boot:spring-boot-starter-jdbc"
  16. implementation project(":spring-security-oauth2-authorization-server")
  17. runtimeOnly "com.h2database:h2"
  18. testImplementation "org.springframework.boot:spring-boot-starter-test"
  19. testImplementation "org.springframework.security:spring-security-test"
  20. testImplementation "org.junit.jupiter:junit-jupiter"
  21. testImplementation "net.sourceforge.htmlunit:htmlunit"
  22. }