We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2408eca commit cbd9792Copy full SHA for cbd9792
build.gradle.kts
@@ -46,6 +46,8 @@ plugins {
46
47
alias(libs.plugins.gradleBitfunkQuality)
48
alias(libs.plugins.gradleBitfunkVersioning)
49
+
50
+ id("jacoco-report-aggregation")
51
}
52
53
allprojects {
@@ -64,6 +66,17 @@ allprojects {
64
66
65
67
68
69
+reportConfig {
70
+ sonarProjectKey.set("bitfunk_blueprint-mobile-kmp")
71
+ sonarOrganization.set("bitfunk")
72
+ coverageReportSourceDirs.set(
73
+ listOf(
74
+ "$projectDir/plugin-development/build/reports/jacoco/testCodeCoverageReport",
75
+ "$projectDir/plugins/build/reports/jacoco/testCodeCoverageReport"
76
+ )
77
78
+}
79
80
tasks.maybeCreate("clean", Delete::class.java).delete("build")
81
82
tasks.named<Wrapper>("wrapper") {
0 commit comments