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

12345678910111213141516171819202122232425262728
  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 'org.kohsuke:github-api'
  10. api 'com.auth0:java-jwt'
  11. api 'org.bouncycastle:bcpkix-jdk18on:1.78.1'
  12. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  13. api project(':server:sonar-auth-github')
  14. api project(':server:sonar-auth-gitlab')
  15. testImplementation project(':sonar-plugin-api-impl')
  16. testImplementation 'junit:junit'
  17. testImplementation 'com.tngtech.java:junit-dataprovider'
  18. testImplementation 'org.assertj:assertj-core'
  19. testImplementation 'org.assertj:assertj-guava'
  20. testImplementation 'org.mockito:mockito-core'
  21. testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
  22. testImplementation 'com.squareup.okhttp3:mockwebserver'
  23. }