spring-security-samples-boot-oauth2authorizationserver.gradle 414 B

12345678910
  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.security.oauth.boot:spring-security-oauth2-autoconfigure:${springBootVersion}"
  6. compile 'com.nimbusds:nimbus-jose-jwt'
  7. testCompile 'org.springframework.boot:spring-boot-starter-test'
  8. }