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 796B

123456789101112131415161718192021222324
  1. description = 'SonarQube :: ALM integrations :: Clients'
  2. dependencies {
  3. api project(':sonar-ws')
  4. api project(':server:sonar-webserver-api')
  5. api 'com.google.code.gson:gson'
  6. api 'com.google.guava:guava'
  7. api 'com.squareup.okhttp3:okhttp'
  8. api 'commons-codec:commons-codec'
  9. api 'com.auth0:java-jwt'
  10. api 'org.bouncycastle:bcpkix-jdk15on:1.70'
  11. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  12. testImplementation project(':sonar-plugin-api-impl')
  13. testImplementation 'junit:junit'
  14. testImplementation 'com.tngtech.java:junit-dataprovider'
  15. testImplementation 'org.assertj:assertj-core'
  16. testImplementation 'org.assertj:assertj-guava'
  17. testImplementation 'org.mockito:mockito-core'
  18. testImplementation 'com.squareup.okhttp3:mockwebserver'
  19. }