Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

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