openjfx21: use gradle_8 instead of gradle_7 to fix build

gradle_7 is marked as insecure, but openjfx21 still builds fine.
openjfx17 still requires gradle_7.
This commit is contained in:
Leona Maroni
2025-11-04 18:36:55 +01:00
parent 73d741066e
commit fc70de6505
+1 -1
View File
@@ -57,7 +57,7 @@ let
atLeast21 = lib.versionAtLeast featureVersion "21";
atLeast23 = lib.versionAtLeast featureVersion "23";
gradle_openjfx = if atLeast23 then gradle_8 else gradle_7;
gradle_openjfx = if atLeast21 then gradle_8 else gradle_7;
in
assert lib.assertMsg (lib.pathExists sourceFile)