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

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Database Migration"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. compile 'com.google.guava:guava'
  9. compile 'commons-lang:commons-lang'
  10. compile 'commons-codec:commons-codec'
  11. compile 'org.picocontainer:picocontainer'
  12. compile 'commons-dbutils:commons-dbutils'
  13. compile project(':server:sonar-db-core')
  14. compile project(':server:sonar-process')
  15. compile project(':sonar-core')
  16. compileOnly 'com.google.code.findbugs:jsr305'
  17. testCompile 'com.google.code.findbugs:jsr305'
  18. testCompile 'com.tngtech.java:junit-dataprovider'
  19. testCompile 'junit:junit'
  20. testCompile 'org.assertj:assertj-core'
  21. testCompile 'org.dbunit:dbunit'
  22. testCompile 'org.mindrot:jbcrypt'
  23. testCompile 'org.mockito:mockito-core'
  24. testCompile project(':sonar-scanner-protocol')
  25. testCompile project(':sonar-testing-harness')
  26. testCompile project(':server:sonar-db-core').sourceSets.test.output
  27. testRuntime 'com.h2database:h2'
  28. testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
  29. testRuntime 'com.oracle.jdbc:ojdbc8'
  30. testRuntime 'org.postgresql:postgresql'
  31. }
  32. test {
  33. systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
  34. }