Package io.quarkus.builder
Interface BuildProvider
-
public interface BuildProviderA provider of deployers which can be detected viaServiceLoader.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidinstallInto(BuildChainBuilder builder)Install this provider's deployers in to the given chain builder.default voidprepareExecution(BuildExecutionBuilder builder)Run any preparatory steps required for a given deployment execution.
-
-
-
Method Detail
-
installInto
void installInto(BuildChainBuilder builder) throws ChainBuildException
Install this provider's deployers in to the given chain builder.- Parameters:
builder- the deployer chain builder (notnull)- Throws:
ChainBuildException- if the installation fails for any reason
-
prepareExecution
default void prepareExecution(BuildExecutionBuilder builder)
Run any preparatory steps required for a given deployment execution. This may include providing initial resource values.- Parameters:
builder- the deployment execution builder (notnull)
-
-