We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe8334 commit 9f4f7c2Copy full SHA for 9f4f7c2
build.gradle.kts
@@ -1,5 +1,7 @@
1
plugins {
2
base
3
+ alias(libs.plugins.jacoco)
4
+ id("test-report-aggregation")
5
id("io.openapiprocessor.build.plugin.publish")
6
}
7
@@ -11,9 +13,12 @@ repositories {
11
13
mavenCentral()
12
14
15
-// check
-tasks.named("build") {
16
- dependsOn ("jacocoLogAggregatedCoverage")
+dependencies {
17
+ testReportAggregation(project(":io-jackson"))
18
+ testReportAggregation(project(":io-jackson3"))
19
+ testReportAggregation(project(":io-snakeyaml"))
20
+ testReportAggregation(project(":json-schema-validator"))
21
+ testReportAggregation(project(":openapi-parser"))
22
23
24
publishingCentral {
0 commit comments