You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 578B

1234567891011121314151617181920
  1. description = 'SonarQube :: Authentication :: Common'
  2. configurations {
  3. testImplementation.extendsFrom compileOnlyApi
  4. }
  5. dependencies {
  6. // please keep the list ordered
  7. api 'com.github.scribejava:scribejava-apis'
  8. api 'com.github.scribejava:scribejava-core'
  9. compileOnlyApi 'com.google.code.findbugs:jsr305'
  10. testImplementation 'commons-lang:commons-lang'
  11. testImplementation 'com.squareup.okhttp3:mockwebserver'
  12. testImplementation 'junit:junit'
  13. testImplementation 'org.assertj:assertj-core'
  14. testImplementation 'org.mockito:mockito-core'
  15. }