From 6775756503858332c9ec6da31a0802ee13573c83 Mon Sep 17 00:00:00 2001 From: HariKrishnan Date: Sat, 19 Sep 2020 12:01:05 +0530 Subject: [PATCH 1/2] Fixing broken link to svm options --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 265cdc83..ff11033d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,20 @@ Configure this plugin and its wrappers around GraalVM tools through the `graal` **`native-image` controls** * `outputName`: the name to use for the image output * `mainClass`: the main class entry-point for the image to run -* `option`: additional native-image options `https://github.com/oracle/graal/blob/master/substratevm/OPTIONS.md` +* `option`: additional native-image options `https://github.com/oracle/graal/blob/master/substratevm/Options.md` + +When there are several options (as is usually the case) mention them separately. Example: + +``` +graal { + mainClass '' + outputName '' + option "--no-fallback" + option "-H:ReflectionConfigurationFiles=$reflectConfig" + option "--initialize-at-run-time=io.netty.channel.kqueue.KQueueEventLoop" + graalVersion '20.2.0' +} +``` Local GraalVM Tooling Cache --------------------------- From 41791b1b5bd05069d8f220f7cdff5f435d6a838e Mon Sep 17 00:00:00 2001 From: HariKrishnan Date: Sat, 19 Sep 2020 12:58:55 +0530 Subject: [PATCH 2/2] Create pr-388.v2.yml --- changelog/@unreleased/pr-388.v2.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 changelog/@unreleased/pr-388.v2.yml diff --git a/changelog/@unreleased/pr-388.v2.yml b/changelog/@unreleased/pr-388.v2.yml new file mode 100644 index 00000000..80070293 --- /dev/null +++ b/changelog/@unreleased/pr-388.v2.yml @@ -0,0 +1,6 @@ +type: fix +fix: + description: Fix gu on Windows and multi-module project path. + links: + - https://github.com/palantir/gradle-graal/pull/388 + - https://github.com/palantir/gradle-graal/issues/389