use of com.microsoft.azure.toolkit.lib.appservice.task.DeployFunctionAppTask in project azure-maven-plugins by microsoft.
the class DeployMojo method deployArtifact.
private void deployArtifact(final IFunctionAppBase<?> target) {
final File file = new File(getDeploymentStagingDirectoryPath());
final FunctionDeployType type = StringUtils.isEmpty(deploymentType) ? null : FunctionDeployType.fromString(deploymentType);
new DeployFunctionAppTask(target, file, type).execute();
}
Aggregations