We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a1fc59 commit f914172Copy full SHA for f914172
buildSrc/src/main/java/org/elasticsearch/gradle/Jdk.java
@@ -37,7 +37,7 @@ public class Jdk implements Buildable, Iterable<File> {
37
private static final List<String> ALLOWED_VENDORS = List.of("adoptopenjdk", "openjdk");
38
static final Pattern VERSION_PATTERN =
39
Pattern.compile("(\\d+)(\\.\\d+\\.\\d+)?\\+(\\d+(?:\\.\\d+)?)(@([a-f0-9]{32}))?");
40
- private static final List<String> ALLOWED_PLATFORMS = Collections.unmodifiableList(Arrays.asList("darwin", "linux", "windows"));
+ private static final List<String> ALLOWED_PLATFORMS = Collections.unmodifiableList(Arrays.asList("darwin", "linux", "windows", "mac"));
41
42
private final String name;
43
private final Configuration configuration;
0 commit comments