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

12345678910111213141516171819202122232425262728293031323334
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Scanner :: Protocol"
  4. property 'sonar.exclusions', 'src/main/java/org/sonar/scanner/protocol/viewer/**'
  5. }
  6. }
  7. dependencies {
  8. compile 'commons-io:commons-io'
  9. compile 'com.google.code.gson:gson'
  10. compile 'com.google.protobuf:protobuf-java'
  11. compile 'net.jpountz.lz4:lz4'
  12. compile project(':sonar-core')
  13. compileOnly 'com.google.code.findbugs:jsr305'
  14. testCompile 'com.google.guava:guava'
  15. testCompile 'junit:junit'
  16. testCompile 'org.assertj:assertj-core'
  17. testCompile 'org.mockito:mockito-core'
  18. testCompile 'net.javacrumbs.json-unit:json-unit-assertj:0.0.15'
  19. }
  20. // Used by sonar-db-core to run DB Unit Tests
  21. artifactoryPublish.skip = false
  22. publishing {
  23. publications {
  24. mavenJava(MavenPublication) {
  25. from components.java
  26. artifact sourcesJar
  27. artifact javadocJar
  28. }
  29. }
  30. }