Skip to content

Commit dbb8bf5

Browse files
asamizHeshamMegid
authored andcommitted
[MOB-12511] Replace JaCoCo’s enabled with required (#995)
* fix(jacoco-reports): replace enabled prop with required for html and xml reports * fix(jacoco-reports): fix PR comments * chore(jacoco-reporting): add changes to CHANGELOG
1 parent 79e4d9e commit dbb8bf5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Fixed
66

77
- Fix an issue with the Android sourcemaps upload Gradle task getting recreated when both `bundleReleaseJsAndAssets` and `createBundleReleaseJsAndAssets` tasks exist in the same Android project ([#991](https://github.com/Instabug/Instabug-React-Native/pull/991)), closes [#989](https://github.com/Instabug/Instabug-React-Native/issues/989).
8+
- Fix an issue with JaCoCo gradle plugin replacing the `enabled` method with `required` prop to prevent gradle scripts breaking on version `0.72` ([#995](https://github.com/Instabug/Instabug-React-Native/pull/995)), closes [#994](https://github.com/Instabug/Instabug-React-Native/issues/994).
89

910
## [11.12.0](https://github.com/Instabug/Instabug-React-Native/compare/v11.10.0...11.12.0) (May 30, 2023)
1011

android/jacoco.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ task jacocoTestReport(type: JacocoReport) {
1111
dependsOn 'testDebugUnitTest'
1212

1313
reports {
14-
html.enabled true
15-
xml.enabled true
14+
html.required = true
15+
xml.required = true
1616
}
1717

1818
def excludes = [

0 commit comments

Comments
 (0)