Bump default GraalVM version to RC8 (#23)
This commit is contained in:
parent
29e1db2675
commit
4155cf9873
2 changed files with 2 additions and 2 deletions
|
@ -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-rc6`)
|
||||
* `graalVersion`: the version string to use when downloading GraalVM (defaults to `1.0.0-rc8`)
|
||||
* `downloadBaseUrl`: the base download URL to use (defaults to `https://github.com/oracle/graal/releases/download/`)
|
||||
|
||||
**`native-image` controls**
|
||||
|
|
|
@ -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-rc6";
|
||||
private static final String DEFAULT_GRAAL_VERSION = "1.0.0-rc8";
|
||||
|
||||
private final Property<String> downloadBaseUrl;
|
||||
private final Property<String> graalVersion;
|
||||
|
|
Loading…
Reference in a new issue