Skip to content

Commit aaa7eac

Browse files
whitewhite
authored andcommitted
Add jacoco plugin to subprojects for Codecov coverage reports
The jacoco plugin was missing from the subprojects block in root build.gradle, causing jacocoTestReport tasks to not exist for python-embed-runtime and python-embed-spring-boot-starter. This resulted in Codecov finding 0 coverage reports. Adding 'apply plugin: jacoco' to subprojects enables XML report generation for all subprojects.
1 parent af090c8 commit aaa7eac

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ subprojects {
1414
group = rootProject.group
1515

1616
apply plugin: 'java'
17+
apply plugin: 'jacoco'
1718
apply plugin: 'com.vanniktech.maven.publish'
1819

1920
repositories {

0 commit comments

Comments
 (0)