Skip to content

Commit b0b9298

Browse files
committed
merge kover reports
1 parent f9e0f4b commit b0b9298

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
alias(libs.plugins.multiplatform) apply false
33
alias(libs.plugins.maven) apply false
4+
alias(libs.plugins.kover)
45
alias(libs.plugins.dokka)
56
}
67

@@ -20,3 +21,9 @@ allprojects {
2021
mavenCentral()
2122
}
2223
}
24+
25+
dependencies {
26+
kover(projects.cdp)
27+
kover(projects.core)
28+
kover(projects.opentelemetry)
29+
}

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ kotlin {
7070
}
7171
val commonMain by getting {
7272
dependencies {
73-
api(project(":cdp"))
73+
api(projects.cdp)
7474
api(libs.ktor.serializationKotlinxJson)
7575
api(libs.ktor.clientContentNegotiation)
7676
api(libs.kotlinx.io)

opentelemetry/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ kotlin {
5656
}
5757
val commonMain by getting {
5858
dependencies {
59-
api(project(":core"))
59+
api(projects.core)
6060
implementation(libs.opentelemetry.extension.kotlin)
6161
}
6262
}

settings.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
rootProject.name = "kdriver"
2+
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
3+
14
pluginManagement {
25
repositories {
36
mavenCentral()
@@ -9,7 +12,6 @@ plugins {
912
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
1013
}
1114

12-
rootProject.name = "kdriver"
1315
includeBuild("cdp-generate")
1416
include(":cdp")
1517
include(":core")

0 commit comments

Comments
 (0)