Hi folks, I have a question regarding a multi-proj...
# community-support
j
Hi folks, I have a question regarding a multi-project setup and coverage reporting. I have the following rather simple setup:
Copy code
Root project 'gradle-multi'
+--- Project ':app'
\--- Project ':testsuite'
The
build.gradle
of the testsuite project looks like this:
Copy code
plugins {
    id 'java'
    id 'jacoco'
}

repositories {
    mavenCentral()
}

dependencies {
    implementation project(':app')
    testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'  
}

test {
    useJUnitPlatform()
}
:app
contains the class that got testet by a Unit Test from
:testsuite
. The Tests are running fine but the coverage report is empty as it includes only the
:testsuite
project. Is there is a way to also include the
:app
subproject? I feel like there is a simple way that I am just missing