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

123456789101112131415161718192021222324252627282930313233343536373839
  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. compile 'commons-io:commons-io'
  12. compile 'com.google.guava:guava'
  13. compile 'com.google.protobuf:protobuf-java'
  14. compile 'com.squareup.okhttp3:okhttp'
  15. compileOnly 'com.google.code.findbugs:jsr305'
  16. compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow')
  17. testCompile 'commons-lang:commons-lang'
  18. testCompile 'com.squareup.okhttp3:mockwebserver'
  19. testCompile 'junit:junit'
  20. testCompile 'org.assertj:assertj-core'
  21. testCompile 'org.mockito:mockito-core'
  22. testCompile project(':sonar-testing-harness')
  23. }
  24. artifactoryPublish.skip = false
  25. publishing {
  26. publications {
  27. mavenJava(MavenPublication) {
  28. from components.java
  29. artifact sourcesJar
  30. artifact javadocJar
  31. }
  32. }
  33. }