mike-neck / graalvm-native-image-plugin

A Gradle plugin which creates a native executable via GraalVM's native-image. This is a thin wrapper of the native-image command.
Apache License 2.0
89 stars 14 forks source link

Fix Kotlin build script in the readme #179

Open KengoTODA opened 3 years ago

KengoTODA commented 3 years ago

This PR suggests fixing the following issues in README:

  1. According to plugin portal the plugin version in the build script should be not vMAJOR.MINOR.PATCH but MAJOR.MINOR.PATCH.
  2. Kotlin uses double quote to represent String literal.
  3. To invoke methods with vararg, need to use a spread operator (*).