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