22 lines
390 B
Groovy
22 lines
390 B
Groovy
sonar {
|
|
properties {
|
|
property 'sonar.projectName', "${projectTitle} :: Shutdowner"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// please keep list ordered
|
|
compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
|
|
|
|
testImplementation 'junit:junit'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'org.sonar.application.Shutdowner'
|
|
)
|
|
}
|
|
}
|