sonarqube { properties { property 'sonar.projectName', "${projectTitle} :: DAO" } } dependencies { // please keep the list grouped by configuration and ordered by name compile 'com.google.guava:guava' compile 'com.google.protobuf:protobuf-java' compile 'commons-dbutils:commons-dbutils' compile 'commons-io:commons-io' compile 'commons-lang:commons-lang' compile 'net.jpountz.lz4:lz4' compile 'org.mybatis:mybatis' compile project(path: ':sonar-plugin-api', configuration: 'shadow') compile project(':server:sonar-db-core') compile project(':sonar-core') compileOnly 'com.google.code.findbugs:jsr305' testCompile 'com.tngtech.java:junit-dataprovider' testCompile 'junit:junit' testCompile 'org.assertj:assertj-core' testCompile 'org.assertj:assertj-guava' testCompile 'org.dbunit:dbunit' testCompile 'org.mockito:mockito-core' testCompile project(':sonar-testing-harness') testCompile project(':server:sonar-db-core').sourceSets.test.output testCompile project(':sonar-plugin-api-impl') testCompileOnly 'com.google.code.findbugs:jsr305' 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') } task testJar(type: Jar) { classifier = 'tests' from sourceSets.test.output } configurations { tests } artifacts { tests testJar }