File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 11plugins {
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+ }
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 1+ rootProject.name = " kdriver"
2+ enableFeaturePreview(" TYPESAFE_PROJECT_ACCESSORS" )
3+
14pluginManagement {
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"
1315includeBuild(" cdp-generate" )
1416include(" :cdp" )
1517include(" :core" )
You can’t perform that action at this time.
0 commit comments