Update 3 files
- /gradle.properties - /gradle.properties.kts - /build.gradle.kts
This commit is contained in:
parent
4a44114cb4
commit
ab6a9e8226
@ -7,6 +7,7 @@ plugins {
|
||||
id("org.sonarqube") version "4.0.0.2929"
|
||||
pmd
|
||||
checkstyle
|
||||
jacoco
|
||||
}
|
||||
|
||||
configurations {
|
||||
@ -118,3 +119,11 @@ sonarqube {
|
||||
property("sonar.host.url", "https://sonarqube.knecon.com")
|
||||
}
|
||||
}
|
||||
|
||||
tasks.jacocoTestReport {
|
||||
dependsOn(tasks.test) // tests are required to run before generating the report
|
||||
reports {
|
||||
xml.required.set(true)
|
||||
csv.required.set(false)
|
||||
}
|
||||
}
|
||||
|
||||
@ -1 +0,0 @@
|
||||
version=1.0-SNAPSHOT
|
||||
1
gradle.properties.kts
Normal file
1
gradle.properties.kts
Normal file
@ -0,0 +1 @@
|
||||
version = 1.0-SNAPSHOT
|
||||
Loading…
x
Reference in New Issue
Block a user