sonarqube { properties { property 'sonar.projectName', "${projectTitle} :: Database Migration" } } dependencies { // please keep the list grouped by configuration and ordered by name compile 'com.google.guava:guava' compile 'commons-lang:commons-lang' compile 'commons-codec:commons-codec' compile 'org.picocontainer:picocontainer' compile 'commons-dbutils:commons-dbutils' compile project(':server:sonar-db-core') compile project(':server:sonar-process') compile project(':sonar-core') compileOnly 'com.google.code.findbugs:jsr305' testCompile 'com.google.code.findbugs:jsr305' testCompile 'com.tngtech.java:junit-dataprovider' testCompile 'junit:junit' testCompile 'org.assertj:assertj-core' testCompile 'org.dbunit:dbunit' testCompile 'org.mindrot:jbcrypt' testCompile 'org.mockito:mockito-core' testCompile project(':sonar-scanner-protocol') testCompile project(':sonar-testing-harness') testCompile project(':server:sonar-db-core').sourceSets.test.output testRuntime 'com.h2database:h2' testRuntime 'com.microsoft.sqlserver:mssql-jdbc' testRuntime 'com.oracle.jdbc:ojdbc8' testRuntime 'org.postgresql:postgresql' } test { systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl') }