sonarqube { properties { property 'sonar.projectName', "${projectTitle} :: WebServer :: Authentification and Identity" } } dependencies { // please keep the list grouped by configuration and ordered by name compile 'com.google.code.gson:gson' compile 'com.google.guava:guava' compile 'io.jsonwebtoken:jjwt-api' compile 'io.jsonwebtoken:jjwt-impl' compile project(':sonar-core') compile project(':server:sonar-process') compile project(':server:sonar-server-common') compile project(':server:sonar-webserver-api') compile project(path: ':sonar-plugin-api', configuration: 'shadow') compile project(':sonar-plugin-api-impl') compile 'org.mindrot:jbcrypt' compileOnly 'com.google.code.findbugs:jsr305' compileOnly 'javax.servlet:javax.servlet-api' testCompile 'com.tngtech.java:junit-dataprovider' testCompile 'javax.servlet:javax.servlet-api' testCompile 'org.apache.logging.log4j:log4j-api' testCompile 'org.apache.logging.log4j:log4j-core' testCompile 'org.assertj:assertj-guava' testCompile 'org.mockito:mockito-core' testCompile testFixtures(project(':server:sonar-server-common')) testCompile project(':sonar-testing-harness') testCompileOnly 'com.google.code.findbugs:jsr305' runtime 'io.jsonwebtoken:jjwt-jackson' testFixturesApi 'junit:junit' testFixturesCompileOnly 'com.google.code.findbugs:jsr305' }