Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

build.gradle 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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:ojdbc11'
  24. testImplementation 'com.tngtech.java:junit-dataprovider'
  25. testImplementation 'org.junit.jupiter:junit-jupiter-api'
  26. testImplementation 'org.mockito:mockito-core'
  27. testImplementation 'org.postgresql:postgresql'
  28. testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
  29. testImplementation project(':sonar-testing-harness')
  30. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
  31. testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
  32. testRuntimeOnly 'com.h2database:h2'
  33. testRuntimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
  34. testRuntimeOnly 'com.oracle.database.jdbc:ojdbc11'
  35. testRuntimeOnly 'org.postgresql:postgresql'
  36. testFixturesApi 'commons-dbutils:commons-dbutils'
  37. testFixturesApi 'junit:junit'
  38. testFixturesApi 'org.assertj:assertj-core'
  39. testFixturesApi 'org.apache.commons:commons-collections4'
  40. testFixturesImplementation 'com.oracle.database.jdbc:ojdbc11'
  41. testFixturesImplementation 'org.junit.jupiter:junit-jupiter-api'
  42. testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
  43. }
  44. test {
  45. if (System.hasProperty('orchestrator.configUrl'))
  46. systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
  47. }
  48. artifactoryPublish.skip = false
  49. // Used by core plugins
  50. publishing {
  51. publications {
  52. mavenJava(MavenPublication) {
  53. from components.java
  54. if (release) {
  55. artifact sourcesJar
  56. artifact javadocJar
  57. }
  58. }
  59. }
  60. }