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

12345678910111213141516
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. ext['nimbus-jose-jwt.version'] = nimbusJoseJwtVersion
  3. dependencies {
  4. compile 'org.springframework.boot:spring-boot-starter-web'
  5. compile 'org.springframework.boot:spring-boot-starter-security'
  6. compile "org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure:${springBootVersion}"
  7. compile 'javax.xml.bind:jaxb-api'
  8. compile 'com.sun.xml.bind:jaxb-core'
  9. compile 'com.sun.xml.bind:jaxb-impl'
  10. compile 'com.nimbusds:nimbus-jose-jwt'
  11. testCompile 'org.springframework.boot:spring-boot-starter-test'
  12. }