We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a08d130 commit f33db9cCopy full SHA for f33db9c
build.gradle
@@ -52,6 +52,10 @@ project.ext {
52
javafxVersion = '20.0.2'
53
}
54
55
+if (isFullRelease && rawVersion.contains("-")) {
56
+ throw new IllegalArgumentException("Releases must have canonical versions")
57
+}
58
+
59
def replaceVariablesInFileAsString(String f, Map<String, String> replacements) {
60
def fileName = file(f).getName()
61
def text = file(f).text
0 commit comments