spring-security-oauth2-jose2.gradle 507 B

1234567891011121314
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-crypto2')
  4. compile 'org.springframework.security:spring-security-oauth2-core'
  5. compile 'org.springframework.security:spring-security-oauth2-jose'
  6. compile springCoreDependency
  7. compile 'com.nimbusds:nimbus-jose-jwt'
  8. testCompile project(path: ':spring-security-crypto2', configuration: 'tests')
  9. testCompile 'junit:junit'
  10. testCompile 'org.assertj:assertj-core'
  11. testCompile 'org.mockito:mockito-core'
  12. }