Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

build.gradle 538B

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