Interface SpringAppDeployment.DefinitionStages.WithModule<T>
-
- All Known Subinterfaces:
SpringAppDeployment.Definition<ParentT,T>
- Enclosing interface:
- SpringAppDeployment.DefinitionStages
public static interface SpringAppDeployment.DefinitionStages.WithModule<T>The stage of a deployment definition allowing to specify the module of the source code.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TwithSingleModule()Specifies the only module of the source code.TwithTargetModule(String moduleName)Specifies the module of the source code.
-
-
-
Method Detail
-
withTargetModule
T withTargetModule(String moduleName)
Specifies the module of the source code.- Parameters:
moduleName- the target module of the multi-module source code- Returns:
- the next stage of deployment definition
-
withSingleModule
T withSingleModule()
Specifies the only module of the source code.- Returns:
- the next stage of deployment definition
-
-