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.2KB

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