From d5cf8844a7dd2577033f16b4fac703e005122dfa Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 5 Jan 2017 12:27:32 -0800 Subject: [PATCH] Document args() --- plug-ins/index.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/plug-ins/index.html b/plug-ins/index.html index ff37d05..29c42a6 100644 --- a/plug-ins/index.html +++ b/plug-ins/index.html @@ -332,6 +332,7 @@ test { application { mainClass = "com.beust.kobalt.wrapper.Main" jvmArgs("-Djava.library.path=libs", "-Ddebug=true") + args("doc", "assemble") }

@@ -340,12 +341,14 @@ application {

 ./kobaltw run
 
-

Here's the list of configuration parameters for the application directive:

+

The application directive supports the following parameters:

-
mainClass
-
The class in your code that contains the main function.
+
args
+
Arguments to pass to the program.
jvmArgs
Arguments to pass to the JVM.
+
mainClass
+
The class in your code that contains the main function.

apt