Main class for the Grails command line. Handles interactive mode and running Grails commands within the context of a profile
| Modifiers | Name | Description | 
|---|---|---|
| static class | GrailsCli.ExecutionContextImpl | 
| Modifiers | Name | Description | 
|---|---|---|
| static java.lang.String | DEFAULT_PROFILE_NAME | 
| Type | Name and description | 
|---|---|
| static java.lang.String | ARG_SPLIT_PATTERN | 
| org.grails.cli.interactive.completers.SortedAggregateCompleter | aggregateCompleter | 
| java.lang.Boolean | ansiEnabled | 
| CodeGenConfig | applicationConfig | 
| CommandLineParser | cliParser | 
| java.lang.Character | defaultInputMask | 
| boolean | integrateGradle | 
| boolean | keepRunning | 
| Profile | profile | 
| java.util.List<org.springframework.boot.cli.compiler.grape.RepositoryConfiguration> | profileRepositories | 
| ProfileRepository | profileRepository | 
| ProjectContext | projectContext | 
| Type | Name and description | 
|---|---|
| protected java.lang.Boolean | bang(ExecutionContext context) | 
| ExecutionContext | createExecutionContext(CommandLine commandLine) | 
| protected MavenProfileRepository | createMavenProfileRepository() | 
| int | execute(java.lang.String... args)Execute the given command | 
| protected boolean | executeCommandWithArgumentValidation(Command cmd, CommandLine mainCommandLine) | 
| protected boolean | executeProcess(ExecutionContext context, java.lang.String[] args) | 
| static void | exit(int code) | 
| static T | getSetting(java.lang.String key, java.lang.Class<T> targetType = Object.class, T defaultValue = null)Obtains a value from USER_HOME/.grails/settings.yml | 
| java.lang.Boolean | handleCommand(CommandLine commandLine) | 
| java.lang.Boolean | handleCommand(ExecutionContext context) | 
| protected void | initializeApplication(CommandLine mainCommandLine) | 
| static boolean | isInteractiveModeActive() | 
| static void | main(java.lang.String[] args)Main method for running via the command line | 
| protected void | outputMissingArgumentsMessage(Command cmd) | 
| protected void | populateContextLoader() | 
| protected GrailsConsole | setupCompleters() | 
| protected void | startInteractiveMode(GrailsConsole console) | 
| static void | tiggerAppLoad() | 
| Methods inherited from class | Name | 
|---|---|
| class java.lang.Object | java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() | 
Execute the given command
args -  The argumentsObtains a value from USER_HOME/.grails/settings.yml
key -  the property name to resolvetargetType -  the expected type of the property valuedefaultValue -  The default valueMain method for running via the command line
args -  The arguments