-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor build plugin #1875
base: main
Are you sure you want to change the base?
Refactor build plugin #1875
Conversation
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Files |
74fa9f6
to
81e36ae
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
❌ Your project check has failed because the head coverage (76.77%) is below the adjusted base coverage (84.86%). You can increase the head coverage or adjust the Removed Code Behavior. Additional details and impacted files@@ Coverage Diff @@
## main #1875 +/- ##
==========================================
- Coverage 85.36% 76.77% -8.59%
==========================================
Files 474 36 -438
Lines 11158 1701 -9457
Branches 1680 257 -1423
==========================================
- Hits 9525 1306 -8219
+ Misses 882 236 -646
+ Partials 751 159 -592 |
81e36ae
to
5d500a9
Compare
5d500a9
to
01d3a22
Compare
project.tasks.withType(Detekt::class.java).configureEach { | ||
jvmTarget = "1.8" | ||
reports { | ||
html.required.set(true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to this: https://detekt.dev/docs/gettingstarted/gradle#reports
We only really need to set XML to false. The rest of the report options are already set at their defaults.
reports {
xml.required.set(false)
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Goal
Replaces the precompiled build scripts with a build plugin. This adds a plugin extension which allows for greater configurability, which will be necessary for when we're also supporting gradle plugin modules in the project.