Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bug): description field in pom.xml was not populated
**Description**: The `<description></description>` field was not present in the pom.xml file generated for maven central. Needed to update two parts of the field setter: - `.orElse(provider { project.description })` became `.orElse(provider(project::getDescription))` to actually populate with the project description - `.orNull()` becomes `.orElse("")` to prevent a null entry on description if it is not present in the other ways **Related Issue(s)**: Fixes #16624 Signed-off-by: Roger Barker <roger.barker@swirldslabs.com>
- Loading branch information