description = 'Definition of a Compute Engine task and utility "framework" and classes to code one' sonar { properties { property 'sonar.projectName', "${projectTitle} :: Compute Engine :: Task" } } sourceSets { test { resources { srcDirs += ['src/test/projects'] } } } dependencies { // please keep the list grouped by configuration and ordered by name api 'com.google.guava:guava' api 'org.slf4j:jul-to-slf4j' api 'org.slf4j:slf4j-api' api project(':server:sonar-server-common') api project(':sonar-core') compileOnlyApi 'com.google.code.findbugs:jsr305' compileOnlyApi 'org.sonarsource.api.plugin:sonar-plugin-api' testImplementation 'ch.qos.logback:logback-access' testImplementation 'ch.qos.logback:logback-classic' testImplementation 'ch.qos.logback:logback-core' testImplementation 'com.google.code.findbugs:jsr305' testImplementation 'com.tngtech.java:junit-dataprovider' testImplementation 'junit:junit' testImplementation 'org.apache.logging.log4j:log4j-api' testImplementation 'org.apache.logging.log4j:log4j-core' testImplementation 'org.assertj:assertj-guava' testImplementation 'org.mockito:mockito-core' testImplementation 'org.reflections:reflections' testImplementation testFixtures(project(':server:sonar-db-dao')) testFixturesApi 'org.assertj:assertj-core' testFixturesCompileOnly 'com.google.code.findbugs:jsr305' }