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 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Core"
  4. }
  5. }
  6. configureCompileJavaToVersion 8
  7. dependencies {
  8. // please keep list ordered
  9. compile 'ch.qos.logback:logback-classic'
  10. compile 'ch.qos.logback:logback-core'
  11. compile 'com.google.guava:guava'
  12. compile 'com.google.protobuf:protobuf-java'
  13. compile 'commons-codec:commons-codec'
  14. compile 'commons-io:commons-io'
  15. compile 'commons-lang:commons-lang'
  16. compile 'org.codehaus.sonar:sonar-classloader'
  17. compile 'org.picocontainer:picocontainer'
  18. compile 'org.slf4j:slf4j-api'
  19. compile 'org.sonarsource.update-center:sonar-update-center-common'
  20. compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  21. compile project(':sonar-plugin-api-impl')
  22. compileOnly 'com.google.code.findbugs:jsr305'
  23. testCompile 'com.tngtech.java:junit-dataprovider'
  24. testCompile 'junit:junit'
  25. testCompile 'org.assertj:assertj-core'
  26. testCompile 'org.hamcrest:hamcrest-core'
  27. testCompile 'org.mockito:mockito-core'
  28. testCompile 'org.simpleframework:simple'
  29. testCompile project(':sonar-testing-harness')
  30. testCompileOnly 'com.google.code.findbugs:jsr305'
  31. }
  32. // Used by sonar-db-core to run DB Unit Tests
  33. artifactoryPublish.skip = false
  34. publishing {
  35. publications {
  36. mavenJava(MavenPublication) {
  37. from components.java
  38. if (release) {
  39. artifact sourcesJar
  40. artifact javadocJar
  41. }
  42. }
  43. }
  44. }