spring-security-oauth2-authorization-server.gradle 752 B

1234567891011121314151617181920212223
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core2')
  4. compile project(':spring-security-oauth2-jose2')
  5. compile 'org.springframework.security:spring-security-core'
  6. compile 'org.springframework.security:spring-security-web'
  7. compile 'org.springframework.security:spring-security-oauth2-core'
  8. compile springCoreDependency
  9. compile 'com.fasterxml.jackson.core:jackson-databind'
  10. testCompile project(path: ':spring-security-crypto2', configuration: 'tests')
  11. testCompile 'org.springframework:spring-webmvc'
  12. testCompile 'junit:junit'
  13. testCompile 'org.assertj:assertj-core'
  14. testCompile 'org.mockito:mockito-core'
  15. provided 'javax.servlet:javax.servlet-api'
  16. }
  17. jacoco {
  18. toolVersion = '0.8.5'
  19. }