Class GrailsBuildTask
- java.lang.Object
-
- com.atlassian.bamboo.plugins.grails.GrailsBuildTask
-
- All Implemented Interfaces:
InternalTaskType
,TaskType
public class GrailsBuildTask extends Object implements TaskType
-
-
Field Summary
Fields Modifier and Type Field Description static String
GRAILS_RUN_CLEAN_GOAL
Whether we should run the "grails clean" before running other goals
-
Constructor Summary
Constructors Constructor Description GrailsBuildTask(ProcessService processService, TestCollationService testCollationService, EnvironmentVariableAccessor environmentVariableAccessor, CapabilityContext capabilityContext)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description @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 Detail
-
GRAILS_RUN_CLEAN_GOAL
public static final String GRAILS_RUN_CLEAN_GOAL
Whether we should run the "grails clean" before running other goals- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GrailsBuildTask
public GrailsBuildTask(ProcessService processService, TestCollationService testCollationService, EnvironmentVariableAccessor environmentVariableAccessor, CapabilityContext capabilityContext)
-
-
Method Detail
-
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
-
-