Skip to content
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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Refactor build plugin #1875

wants to merge 2 commits into from

Conversation

fractalwrench
Copy link
Contributor

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.

@fractalwrench fractalwrench requested a review from a team as a code owner February 7, 2025 14:36
Copy link
Contributor

github-actions bot commented Feb 7, 2025

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails

Scanned Files

@fractalwrench fractalwrench marked this pull request as draft February 7, 2025 14:56
Copy link

codecov bot commented Feb 7, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 76.77%. Comparing base (fdeb643) to head (01d3a22).

❌ 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

Impacted file tree graph

@@            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     

see 438 files with indirect coverage changes

@fractalwrench fractalwrench marked this pull request as ready for review February 7, 2025 17:36
project.tasks.withType(Detekt::class.java).configureEach {
jvmTarget = "1.8"
reports {
html.required.set(true)
Copy link
Contributor

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)
}

Copy link
Contributor

@priettt priettt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants