Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing broken link to svm options #389

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 '<MainClass>'
outputName '<Output Name>'
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
---------------------------
Expand Down
6 changes: 6 additions & 0 deletions changelog/@unreleased/pr-388.v2.yml
Original file line number Diff line number Diff line change
@@ -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