Griffon 1.2.0

org.codehaus.griffon.cli.shell.command
[Java] Class RunAppCommand

java.lang.Object
  org.codehaus.griffon.cli.shell.AbstractGriffonCommand
      org.codehaus.griffon.cli.shell.command.RunAppCommand

@Command(scope = "griffon",
        name = "run-app",
        description = "Runs the application in standalone mode")
public class RunAppCommand
extends AbstractGriffonCommand

Authors:
Andres Almiray
Since:
0.9.5


Field Summary
private List arguments

private boolean debug

private String debugAddr

private String debugPort

private String debugSuspend

private String javaOpts

private String jvmOpts

 
Fields inherited from class AbstractGriffonCommand
env, nonInteractive
 
Constructor Summary
RunAppCommand()

 

Field Detail

arguments

@Argument(index = 0,
            name = "arguments",
            description = "Optional arguments to be passed to the application.",
            required = false,
            multiValued = true)
private List arguments


debug

@Option(name = "--debug",
            description = "Whether to run the application in debug more or not.",
            required = false)
private boolean debug


debugAddr

@Option(name = "--debug-addr",
            description = "Debugging address.",
            required = false)
private String debugAddr


debugPort

@Option(name = "--debug-port",
            description = "Debugging port connection.",
            required = false)
private String debugPort


debugSuspend

@Option(name = "--debug-suspend",
            description = "Whether to start the debug process in suspend mode or not.",
            required = false)
private String debugSuspend


javaOpts

@Option(name = "--java-opts",
            description = "Additional JVM options.",
            required = false)
private String javaOpts


jvmOpts

@Option(name = "--jvm-opts",
            description = "Additional JVM options such as --javaagent.",
            required = false)
private String jvmOpts


 
Constructor Detail

RunAppCommand

RunAppCommand()


 

Groovy Documentation