Gradle JavaExec Task Type: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 23: Line 23:
=Configuration=
=Configuration=
==<tt>classpath</tt>==
==<tt>classpath</tt>==
<font color=darkgray>TODO</font>
<syntaxhighlight lang='groovy'>
<syntaxhighlight lang='groovy'>
classpath = sourceSets.main.runtimeClasspath
classpath = sourceSets.main.runtimeClasspath
Line 29: Line 31:
classpath = configurations.runtimeClasspath
classpath = configurations.runtimeClasspath
</syntaxhighlight>
</syntaxhighlight>
==<tt>main</tt>==
==<tt>main</tt>==
The main class. Must be available on classpath.
The main class. Must be available on classpath.

Revision as of 21:23, 26 March 2021

External

Internal

Overview

Executes a Java application as a child process. To get details on the actual java command line, execute Gradle with -i command line option.

task someTask(type: JavaExec) {
    classpath = configurations.runtimeClasspath
    main = 'myPackage.MyMainClass'
    args = ['something', 'somethingelse']
    jvmArgs = ['-Xmx12g']
    environment "LD_LIBRARY_PATH", "/usr/local/lib"
    systemProperties = [ "some.prop": "some.value", "some.other.prop": "some.other.value" ]
}

Configuration

classpath

TODO

classpath = sourceSets.main.runtimeClasspath
classpath = configurations.runtimeClasspath

main

The main class. Must be available on classpath.

main = 'playground.javaExec.Main'

args

"args" can be provided as a single string, but in this case, even if individual tokens are separated by space, the main() method will get just one single string as argument:

args 'A B C'

This will be passed to the Java main() method as args[0]:

arguments:
  args[0]: X Y Z

To provide individual tokens, use this syntax:

args = ['A', 'B', 'C']

The list elements will be passed to the Java main() method as individual arguments:

arguments:
  args[0]: A
  args[1]: B
  args[2]: C

jvmArgs

jvmArgs = ['-Xmx12g']

environment

Specifies a single environment variable, as a key value pair separated by comma. Multiple variable can be specified that way:

environment "SOME_ENV_VAR", "some value"
environment "SOME_OTHER_ENV_VAR", "some other value"

systemProperties

A Groovy map.

systemProperties = [ "some.prop": "some.value", "some.other.prop": "some.other.value" ]