blob: 84f4b1ac0661a61d2eeb12a3d704c70ce32d9b82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: Java UT Monitoring"
}
}
dependencies {
// please keep the list grouped by configuration and ordered by name
compile 'com.google.code.gson:gson'
compile 'junit:junit'
compile project(path: ':sonar-plugin-api', configuration: 'shadow')
compileOnly 'org.aspectj:aspectjtools'
}
sonarqube {
skipProject = true
}
|