From df087550c4798c8dd2a945aa00b53a77067fc52e Mon Sep 17 00:00:00 2001 From: Serban Iordache Date: Sun, 25 Aug 2019 23:43:12 +0200 Subject: [PATCH] update doc --- doc/user_guide.adoc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/user_guide.adoc b/doc/user_guide.adoc index 6ce0d1c1..2df1de13 100644 --- a/doc/user_guide.adoc +++ b/doc/user_guide.adoc @@ -71,6 +71,9 @@ javaHome:: The path to the JDK providing the tools needed by the plugin (_javac_ pass:[    ] - the `java.home` system property (only if it points to a JRE containing the `javac`, `jar`, and `jlink` tools) + pass:[    ] - the `JAVA_HOME` environment variable + _usage example_: `javaHome = '/usr/lib/jvm/open-jdk'` +configuration:: The name of the Gradle dependency configuration used to execute your application. + + _defaultValue_: `'runtimeClasspath'` + + _usage example_: `configuration = 'myAppRuntime'` == Methods @@ -423,7 +426,7 @@ installerName:: the argument passed to the `--name` option when running `jpackag _usage example_: `installerName = "MyApp"` identifier:: the argument passed to the `--identifier` option when running `jpackage` when executing the `jpackage` task. + - _defaultValue_: the the main class name + + _defaultValue_: the main class name + _usage example_: `identifier = "org.example.MyApp"` jvmArgs:: list of JVM arguments to be passed to the virtual machine. +