Class GrailsBuildTask
java.lang.Object
com.atlassian.bamboo.plugins.grails.GrailsBuildTask
- All Implemented Interfaces:
InternalTaskType
,TaskType
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Whether we should run the "grails clean" before running other goals -
Constructor Summary
ConstructorDescriptionGrailsBuildTask
(ProcessService processService, TestCollationService testCollationService, EnvironmentVariableAccessor environmentVariableAccessor, CapabilityContext capabilityContext) -
Method Summary
Modifier and TypeMethodDescription@NotNull TaskResult
execute
(@NotNull TaskContext taskContext) Execute the task@Nullable String
getInstalledGrailsVersion
(@NotNull String commandExecutable) Look up in grails command home directory and read the grails version number form the 'build.properties' filestatic @Nullable String
getRequiredGrailsVersion
(@NotNull CommonTaskContext taskContext) Look up for 'application.properties' file and return Grails version set in it.
-
Field Details
-
GRAILS_RUN_CLEAN_GOAL
Whether we should run the "grails clean" before running other goals- See Also:
-
-
Constructor Details
-
GrailsBuildTask
public GrailsBuildTask(ProcessService processService, TestCollationService testCollationService, EnvironmentVariableAccessor environmentVariableAccessor, CapabilityContext capabilityContext)
-
-
Method Details
-
execute
@NotNull public @NotNull TaskResult execute(@NotNull @NotNull TaskContext taskContext) throws TaskException Description copied from interface:TaskType
Execute the task- Specified by:
execute
in interfaceTaskType
- Returns:
- a
TaskResult
representing the status of the task execution - Throws:
TaskException
-
getRequiredGrailsVersion
@Nullable public static @Nullable String getRequiredGrailsVersion(@NotNull @NotNull CommonTaskContext taskContext) Look up for 'application.properties' file and return Grails version set in it.- Parameters:
taskContext
- task context- Returns:
- String grails version or
null
if not found
-
getInstalledGrailsVersion
@Nullable public @Nullable String getInstalledGrailsVersion(@NotNull @NotNull String commandExecutable) Look up in grails command home directory and read the grails version number form the 'build.properties' file- Returns:
- String grails version or
null
if not found
-