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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 'org.codehaus.sonar:sonar-classloader'
  16. compile 'org.picocontainer:picocontainer'
  17. compile 'org.slf4j:slf4j-api'
  18. compile 'org.sonarsource.update-center:sonar-update-center-common'
  19. compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  20. compile project(':sonar-plugin-api-impl')
  21. compileOnly 'com.google.code.findbugs:jsr305'
  22. testCompile 'com.tngtech.java:junit-dataprovider'
  23. testCompile 'junit:junit'
  24. testCompile 'org.assertj:assertj-core'
  25. testCompile 'org.hamcrest:hamcrest-core'
  26. testCompile 'org.mockito:mockito-core'
  27. testCompile 'org.simpleframework:simple'
  28. testCompile project(':sonar-testing-harness')
  29. testCompileOnly 'com.google.code.findbugs:jsr305'
  30. }
  31. // Used by sonar-db-core to run DB Unit Tests
  32. artifactoryPublish.skip = false
  33. publishing {
  34. publications {
  35. mavenJava(MavenPublication) {
  36. from components.java
  37. if (release) {
  38. artifact sourcesJar
  39. artifact javadocJar
  40. }
  41. }
  42. }
  43. }