jacoco-plugin Questions
2
To solve my problem here: Applying JaCoCo to all Android Studio gradle modules, I applied the solution here. This works fine so far for modules with
plugins {
id("com.android.library")
}...
Haemostat asked 5/4, 2022 at 9:25
3
Solved
There is something strange going on with my jacoco configuration and I am not able to figure it out. I have visited multiple threads on stack overflow and other platforms and tried many thing, but ...
Trusting asked 7/2, 2023 at 14:58
1
I am migrating my project to Gradle 7.4 and i would like to use the new plugin jacoco-report-aggregation to generate unit and integration test coverage report perfectly merged to be sent to sonarqu...
Tarboosh asked 7/3, 2022 at 9:19
4
In my gradle build I have 2 test tasks like this:
task testAAA(type: Test) {
filter {
includeTestsMatching "*AAA*"
}
finalizedBy jacocoTestReport
}
and
task testBBB(type: Test) {
filter ...
Licko asked 7/4, 2020 at 0:11
1
I am getting following error while running a test project in Jenkins
Caused by: java.lang.LinkageError: loader 'bootstrap' attempted duplicate class definition for java.lang.$JaCoCo. (java.lang.$Ja...
Caddis asked 21/5, 2022 at 9:53
1
Solved
I have an Android Studio Project with an app module and several modules as lib (see my settings.gradle):
rootProject.name = "MyApp"
include ":app"
include ":lib1"
in...
Prying asked 29/3, 2022 at 22:8
0
I have tried severally to configure this sonarqube property sonar.junit.reportPaths within Gradle but still get the same error message.
Gradle version -> 6.7.1
SonarQube Server version -> 8.9...
Incompetent asked 26/6, 2021 at 13:52
2
Solved
Jacoco code coverage was working fine till I upgrade Android Gradle Plugin to 4.2.0 , no only app module code coverage getting generated, for modules it is not working.
Any Idea how to fix this iss...
Zeal asked 14/5, 2021 at 6:53
1
Solved
This is the error I get when running mvn jacoco:check for a maven application. Due to that, the report is not generated.
[ERROR] Failed to execute goal org.jacoco:jacoco-maven-plugin:0.8.3:check (...
Enact asked 12/5, 2020 at 11:51
1
Solved
I am trying to publish my coverage report generated by Jacoco plugin - jacoco.exec. But I get the below exception with the mentioned sonar and Jacoco configuration.
SonarCube version 6.7.7
[ERROR...
Seventeen asked 16/3, 2020 at 10:58
1
© 2022 - 2024 — McMap. All rights reserved.