-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
45 lines (36 loc) · 1.26 KB
/
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
45
// FILE IS GENERATED AUTOMATICALLY BY kbre. DON'T EDIT MANUALLY.
plugins {
kotlin("multiplatform") version libs.versions.kotlin
alias(libs.plugins.sonar)
alias(libs.plugins.ktlint)
alias(libs.plugins.task.tree)
alias(libs.plugins.kotlinx.serialization)
}
group = "name.stepin"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
commonMainImplementation(libs.clikt)
commonTestImplementation(kotlin("test"))
commonMainImplementation(libs.yamlkt)
commonMainImplementation(libs.okio)
commonMainImplementation(libs.mordant)
}
kotlin {
linuxX64().binaries.executable { entryPoint = "name.stepin.main" }
linuxArm64().binaries.executable { entryPoint = "name.stepin.main" }
macosX64().binaries.executable { entryPoint = "name.stepin.main" }
macosArm64().binaries.executable { entryPoint = "name.stepin.main" }
applyDefaultHierarchyTemplate()
}
sonar {
properties {
property("sonar.coverage.jacoco.xmlReportPaths", "build/reports/kover/xml/report.xml")
property("sonar.host.url", "http://localhost:9000")
property("sonar.projectKey", "kbre")
property("sonar.projectName", "kbre")
property("sonar.token", "sqp_821b1d3209761625bdd29259674237d429bce626")
}
}