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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. sonar {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Database Core"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. api 'ch.qos.logback:logback-classic'
  9. api 'ch.qos.logback:logback-core'
  10. api 'com.google.guava:guava'
  11. api 'commons-io:commons-io'
  12. api 'commons-lang:commons-lang'
  13. api 'com.zaxxer:HikariCP'
  14. api 'org.mybatis:mybatis'
  15. api 'org.slf4j:slf4j-api'
  16. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  17. api project(':server:sonar-process')
  18. api project(':sonar-plugin-api-impl')
  19. compileOnlyApi 'com.google.code.findbugs:jsr305'
  20. testImplementation 'com.google.code.findbugs:jsr305'
  21. testImplementation 'com.h2database:h2'
  22. testImplementation 'com.microsoft.sqlserver:mssql-jdbc'
  23. testImplementation 'com.oracle.database.jdbc:ojdbc8'
  24. testImplementation 'com.tngtech.java:junit-dataprovider'
  25. testImplementation 'org.mockito:mockito-core'
  26. testImplementation 'org.mockito:mockito-inline'
  27. testImplementation 'org.postgresql:postgresql'
  28. testImplementation project(':sonar-testing-harness')
  29. testRuntimeOnly 'com.h2database:h2'
  30. testRuntimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
  31. testRuntimeOnly 'com.oracle.database.jdbc:ojdbc8'
  32. testRuntimeOnly 'org.postgresql:postgresql'
  33. testFixturesApi 'commons-dbutils:commons-dbutils'
  34. testFixturesApi 'junit:junit'
  35. testFixturesApi 'org.assertj:assertj-core'
  36. testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
  37. }
  38. test {
  39. if (System.hasProperty('orchestrator.configUrl'))
  40. systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
  41. }
  42. artifactoryPublish.skip = false
  43. // Used by core plugins
  44. publishing {
  45. publications {
  46. mavenJava(MavenPublication) {
  47. from components.java
  48. if (release) {
  49. artifact sourcesJar
  50. artifact javadocJar
  51. }
  52. }
  53. }
  54. }