spring-security-oauth2-authorization-server.gradle 1.0 KB

123456789101112131415161718192021222324252627282930
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile 'org.springframework.security:spring-security-config'
  4. compile 'org.springframework.security:spring-security-web'
  5. compile 'org.springframework.security:spring-security-oauth2-core'
  6. compile 'org.springframework.security:spring-security-oauth2-jose'
  7. compile 'org.springframework.security:spring-security-oauth2-resource-server'
  8. compile springCoreDependency
  9. compile 'com.nimbusds:nimbus-jose-jwt'
  10. compile 'com.fasterxml.jackson.core:jackson-databind'
  11. optional 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
  12. optional 'org.springframework:spring-jdbc'
  13. testCompile 'org.springframework.security:spring-security-test'
  14. testCompile 'org.springframework:spring-webmvc'
  15. testCompile 'junit:junit'
  16. testCompile 'org.assertj:assertj-core'
  17. testCompile 'org.mockito:mockito-core'
  18. testCompile 'com.jayway.jsonpath:json-path'
  19. testRuntime 'org.hsqldb:hsqldb'
  20. provided 'javax.servlet:javax.servlet-api'
  21. }
  22. jacoco {
  23. toolVersion = '0.8.6'
  24. }