-
-
Notifications
You must be signed in to change notification settings - Fork 107
Open
Description
- I have read the guidelines for submitting issues
🐛 Describe the bug
JavaFX early access versions like 23-ea+3 are considered stable.
⚠️ Current behavior
JavaFX early access versions are added as update comments
✅ Expected behavior
JavaFX early access versions are not added as update comments
💣 Steps to reproduce
- depend on
org.openjfx:javafx-base:13.0.1 - do
refreshVersions
Work-around
rejectVersionIf {
fun Version.getAugmentedStabilityLevel() =
// work-around for https://github.com/Splitties/refreshVersions/issues/721
if ((moduleId.group == "org.openjfx") && (value.contains("ea"))) {
StabilityLevel.EarlyAccessProgram
} else {
stabilityLevel
}
candidate.getAugmentedStabilityLevel().isLessStableThan(current.getAugmentedStabilityLevel())
}Metadata
Metadata
Assignees
Labels
No labels