blob: 39fe958dac7511f910c2b12589eef1141df5a0f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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'
}
tasks.withType(JavaCompile) {
options.release = 11
}
sonar {
skipProject = true
}
|