blob: b607704e80aee1575dc092d357831f95406be7c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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
}
|