Upgrade to latest GraalVM (#27)

This commit is contained in:
Mark Elliot 2018-11-06 08:30:38 +00:00 committed by Robert Fink
parent 4155cf9873
commit 7f884ba02b
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ Configuration
Configure this plugin and its wrappers around GraalVM tools through the `graal` extension with the following options:
**General GraalVM controls**
* `graalVersion`: the version string to use when downloading GraalVM (defaults to `1.0.0-rc8`)
* `graalVersion`: the version string to use when downloading GraalVM (defaults to `1.0.0-rc9`)
* `downloadBaseUrl`: the base download URL to use (defaults to `https://github.com/oracle/graal/releases/download/`)
**`native-image` controls**

View file

@ -26,7 +26,7 @@ import org.gradle.api.provider.Provider;
public class GraalExtension {
private static final String DEFAULT_DOWNLOAD_BASE_URL = "https://github.com/oracle/graal/releases/download/";
private static final String DEFAULT_GRAAL_VERSION = "1.0.0-rc8";
private static final String DEFAULT_GRAAL_VERSION = "1.0.0-rc9";
private final Property<String> downloadBaseUrl;
private final Property<String> graalVersion;