-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
41 lines (35 loc) · 977 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
plugins {
kotlin("jvm")
id("org.jetbrains.kotlinx.kover")
alias(libs.plugins.sonar)
alias(libs.plugins.git.semver)
}
repositories {
mavenCentral()
}
dependencies {
kover(project(":kapper"))
kover(project(":kapper-coroutines"))
}
semver {
changeLogFormat = git.semver.plugin.changelog.ChangeLogFormat.defaultChangeLog
releasePattern = "\\\\ABuild: release(?:\\\\([^()]+\\\\))?:"
}
val projectVersion = semver.version
subprojects {
group = "net.samyn"
version = projectVersion
}
tasks.build {
dependsOn(":koverHtmlReport")
dependsOn(":koverXmlReport")
}
sonar {
properties {
property("sonar.projectKey", "driessamyn_kapper")
property("sonar.organization", "driessamyn")
property("sonar.host.url", "https://sonarcloud.io")
property("sonar.coverage.jacoco.xmlReportPaths", "build/reports/kover/report.xml")
property("sonar.junit.reportPaths", "**/build/test-results/*/")
}
}