sonar { properties { property 'sonar.projectName', "${projectTitle} :: Java UT Monitoring" } } dependencies { // please keep the list grouped by configuration and ordered by name api 'com.google.code.gson:gson' api 'junit:junit' api 'org.sonarsource.api.plugin:sonar-plugin-api' compileOnlyApi 'org.aspectj:aspectjtools' compileOnlyApi 'com.google.code.findbugs:jsr305' } tasks.withType(JavaCompile) { options.release = 11 } sonar { skipProject = true }