spring-security-oauth2-jose2.gradle 542 B

123456789101112131415161718
  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. }
  13. jacoco {
  14. toolVersion = '0.8.5'
  15. }