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

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Web Service"
  4. property 'sonar.exclusions', 'src/main/java/org/sonarqube/ws/client/*/*.java'
  5. }
  6. }
  7. configurations {
  8. testCompile.extendsFrom(compileOnly)
  9. }
  10. dependencies {
  11. // please keep list ordered
  12. compile 'com.google.protobuf:protobuf-java'
  13. compile 'com.squareup.okhttp3:okhttp'
  14. compileOnly 'com.google.code.findbugs:jsr305'
  15. compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow')
  16. testCompile 'com.squareup.okhttp3:mockwebserver'
  17. testCompile 'commons-lang:commons-lang'
  18. testCompile 'junit:junit'
  19. testCompile 'org.assertj:assertj-core'
  20. testCompile 'org.mockito:mockito-core'
  21. testCompile project(':sonar-testing-harness')
  22. }
  23. artifactoryPublish.skip = false
  24. publishing {
  25. publications {
  26. mavenJava(MavenPublication) {
  27. from components.java
  28. if (release) {
  29. artifact sourcesJar
  30. artifact javadocJar
  31. }
  32. }
  33. }
  34. }