sonar { properties { property 'sonar.projectName', "${projectTitle} :: Database Migration" } } dependencies { // please keep the list grouped by configuration and ordered by name api 'com.google.guava:guava' api 'commons-lang:commons-lang' api 'commons-codec:commons-codec' api 'com.fasterxml.staxmate:staxmate' api project(':server:sonar-db-core') api project(':server:sonar-process') api project(':sonar-core') compileOnlyApi 'com.google.code.findbugs:jsr305' testImplementation 'com.google.code.findbugs:jsr305' testImplementation 'com.tngtech.java:junit-dataprovider' testImplementation 'commons-dbutils:commons-dbutils' testImplementation 'com.squareup.okhttp3:mockwebserver' testImplementation 'junit:junit' testImplementation 'org.assertj:assertj-core' testImplementation 'org.mindrot:jbcrypt' testImplementation 'org.mockito:mockito-core' testImplementation 'org.xmlunit:xmlunit-core' testImplementation 'org.xmlunit:xmlunit-matchers' testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures' testImplementation project(':sonar-scanner-protocol') testImplementation project(':sonar-testing-harness') testImplementation testFixtures(project(':server:sonar-db-core')) testRuntimeOnly 'com.h2database:h2' testRuntimeOnly 'com.microsoft.sqlserver:mssql-jdbc' testRuntimeOnly 'com.oracle.database.jdbc:ojdbc11' testRuntimeOnly 'org.postgresql:postgresql' } test { systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl') }