Groovy Documentation

org.gradle.process
[Java] Interface JavaForkOptions

org.gradle.process.ProcessForkOptions
  org.gradle.process.JavaForkOptions
All Superinterfaces:
ProcessForkOptions

public interface JavaForkOptions
extends ProcessForkOptions

Specifies the options to use to fork a Java process.


Method Summary
JavaForkOptions bootstrapClasspath(java.lang.Object... classpath)

Adds the given values to the end of the bootstrap classpath for the process.

JavaForkOptions copyTo(JavaForkOptions options)

Copies these options to the given options.

java.util.List getAllJvmArgs()

Returns the full set of arguments to use to launch the JVM for the process.

FileCollection getBootstrapClasspath()

Returns the bootstrap classpath to use for the process.

boolean getDebug()

Returns true if debugging is enabled for the process.

boolean getEnableAssertions()

Returns true if assertions are enabled for the process.

java.util.List getJvmArgs()

Returns the extra arguments to use to launch the JVM for the process.

java.lang.String getMaxHeapSize()

Returns the maximum heap size for the process, if any.

java.util.Map getSystemProperties()

Returns the system properties which will be used for the process.

JavaForkOptions jvmArgs(java.lang.Iterable arguments)

Adds some arguments to use to launch the JVM for the process.

JavaForkOptions jvmArgs(java.lang.Object... arguments)

Adds some arguments to use to launch the JVM for the process.

void setAllJvmArgs(java.lang.Iterable arguments)

Sets the full set of arguments to use to launch the JVM for the process.

void setBootstrapClasspath(FileCollection classpath)

Sets the bootstrap classpath to use for the process.

void setDebug(boolean enabled)

Enable or disable debugging for the process.

void setEnableAssertions(boolean enabled)

Enable or disable assertions for the process.

void setJvmArgs(java.lang.Iterable arguments)

Sets the extra arguments to use to launch the JVM for the process.

void setMaxHeapSize(java.lang.String heapSize)

Sets the maximum heap size for the process.

void setSystemProperties(java.util.Map properties)

Sets the system properties to use for the process.

JavaForkOptions systemProperties(java.util.Map properties)

Adds some system properties to use for the process.

JavaForkOptions systemProperty(java.lang.String name, java.lang.Object value)

Adds a system property to use for the process.

 
Methods inherited from interface ProcessForkOptions
copyTo, environment, environment, executable, getEnvironment, getExecutable, getWorkingDir, setEnvironment, setExecutable, setWorkingDir, workingDir
 

Method Detail

bootstrapClasspath

public JavaForkOptions bootstrapClasspath(java.lang.Object... classpath)
Adds the given values to the end of the bootstrap classpath for the process.
Parameters:
classpath - The classpath.
Returns:
this


copyTo

public JavaForkOptions copyTo(JavaForkOptions options)
Copies these options to the given options.
Parameters:
options - The target options.
Returns:
this


getAllJvmArgs

public java.util.List getAllJvmArgs()
Returns the full set of arguments to use to launch the JVM for the process. This includes arguments to define system properties, the maximum heap size, and the bootstrap classpath.
Returns:
The arguments. Returns an empty list if there are no arguments.


getBootstrapClasspath

public FileCollection getBootstrapClasspath()
Returns the bootstrap classpath to use for the process. The default bootstrap classpath for the JVM is used when this classpath is empty.
Returns:
The bootstrap classpath. Never returns null.


getDebug

public boolean getDebug()
Returns true if debugging is enabled for the process. When enabled, the process is started suspended and listening on port 5005.
Returns:
true when debugging is enabled, false to disable.


getEnableAssertions

public boolean getEnableAssertions()
Returns true if assertions are enabled for the process.
Returns:
true if assertions are enabled, false if disabled


getJvmArgs

public java.util.List getJvmArgs()
Returns the extra arguments to use to launch the JVM for the process. Does not include system properties and the maximum heap size.
Returns:
The arguments. Returns an empty list if there are no arguments.


getMaxHeapSize

public java.lang.String getMaxHeapSize()
Returns the maximum heap size for the process, if any.
Returns:
The maximum heap size. Returns null if the default maximum heap size should be used.


getSystemProperties

public java.util.Map getSystemProperties()
Returns the system properties which will be used for the process.
Returns:
The system properties. Returns an empty map when there are no system properties.


jvmArgs

public JavaForkOptions jvmArgs(java.lang.Iterable arguments)
Adds some arguments to use to launch the JVM for the process.
Parameters:
arguments - The arguments. Must not be null.
Returns:
this


jvmArgs

public JavaForkOptions jvmArgs(java.lang.Object... arguments)
Adds some arguments to use to launch the JVM for the process.
Parameters:
arguments - The arguments.
Returns:
this


setAllJvmArgs

public void setAllJvmArgs(java.lang.Iterable arguments)
Sets the full set of arguments to use to launch the JVM for the process. Overwrites any previously set system properties, maximum heap size, assertions, and bootstrap classpath.
Parameters:
arguments - The arguments. Must not be null.


setBootstrapClasspath

public void setBootstrapClasspath(FileCollection classpath)
Sets the bootstrap classpath to use for the process. Set to an empty classpath to use the default bootstrap classpath for the specified JVM.
Parameters:
classpath - The classpath. Must not be null. Can be empty.


setDebug

public void setDebug(boolean enabled)
Enable or disable debugging for the process. When enabled, the process is started suspended and listening on port 5005.
Parameters:
enabled - true to enable debugging, false to disable.


setEnableAssertions

public void setEnableAssertions(boolean enabled)
Enable or disable assertions for the process.
Parameters:
enabled - true to enable assertions, false to disable.


setJvmArgs

public void setJvmArgs(java.lang.Iterable arguments)
Sets the extra arguments to use to launch the JVM for the process. System properties and maximum heap size are updated.
Parameters:
arguments - The arguments. Must not be null.


setMaxHeapSize

public void setMaxHeapSize(java.lang.String heapSize)
Sets the maximum heap size for the process.
Parameters:
heapSize - The heap size. Use null for the default maximum heap size.


setSystemProperties

public void setSystemProperties(java.util.Map properties)
Sets the system properties to use for the process.
Parameters:
properties - The system properties. Must not be null.


systemProperties

public JavaForkOptions systemProperties(java.util.Map properties)
Adds some system properties to use for the process.
Parameters:
properties - The system properties. Must not be null.
Returns:
this


systemProperty

public JavaForkOptions systemProperty(java.lang.String name, java.lang.Object value)
Adds a system property to use for the process.
Parameters:
name - The name of the property
value - The value for the property. May be null.
Returns:
this


 

Groovy Documentation