forked from Giskard-AI/giskard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
46 lines (37 loc) · 903 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import java.util.*
fun Project.applySonarProperties() {
if (file("sonar-project.properties").exists()) {
val sonarProperties = Properties().apply {
load(file("sonar-project.properties").reader())
}
sonarProperties.forEach { key, value ->
sonar {
properties {
property(key as String, value as String)
}
}
}
sonar {
properties {
property("sonar.projectVersion", version.toString())
property("sonar.branch", "fix/cleanup-after-v2")
}
}
}
}
tasks.clean {
delete(".gradle", "build")
}
plugins {
id("base")
id("org.sonarqube")
`kotlin-dsl`
}
repositories {
mavenCentral()
}
allprojects {
version = extra["giskardVersion"]!!
applySonarProperties()
}
applySonarProperties()