Package com.atlassian.bamboo.build
Interface CustomBuildProcessor
-
- All Superinterfaces:
AgentBuildTask
,BambooPluginModule
,BuildTask
,Callable<BuildContext>
- All Known Implementing Classes:
BuildArtifactPostProcessor
,BuildLabellerCustomBuildProcessor
,CloverBuildProcessor
public interface CustomBuildProcessor extends AgentBuildTask, BambooPluginModule
Allows for a custom build process to be run after the main Builder. If you need to add custom build configurations, the key value pairs must be prefixed with "custom". All values added with the prefix "custom" will be available in theBuildDefinition.getCustomConfiguration()
map. e.g. if you need the user to enter in a value for "foo", use the text field name "custom.foo" andBuildDefinition.getCustomConfiguration()
's get('foo') method to retrieve the value.