spring-authorization-server-samples-boot-minimal.gradle 438 B

123456789101112131415
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. dependencies {
  3. implementation 'org.springframework.boot:spring-boot-starter-web'
  4. implementation 'org.springframework.boot:spring-boot-starter-security'
  5. implementation 'com.nimbusds:oauth2-oidc-sdk'
  6. testImplementation('org.springframework.boot:spring-boot-starter-test') {
  7. exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  8. }
  9. }
  10. test {
  11. useJUnitPlatform()
  12. }