io.linguarobot.aws.cdk.maven.AbstractCloudActionMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-cdk-maven-plugin Show documentation
Show all versions of aws-cdk-maven-plugin Show documentation
The AWS CDK Maven plugin produces and deploys CloudFormation templates based on the cloud infrastructure defined
by means of CDK. The goal of the project is to improve the experience of Java developers while working with
CDK by eliminating the need for installing Node.js and interacting with the CDK application by means of CDK
Toolkit.
package io.linguarobot.aws.cdk.maven;
import java.nio.file.Files;
import java.nio.file.Path;
public abstract class AbstractCloudActionMojo extends AbstractCdkMojo {
@Override
public void execute(Path cloudAssemblyDirectory, EnvironmentResolver environmentResolver) {
if (!Files.exists(cloudAssemblyDirectory)) {
throw new CdkPluginException("The cloud assembly directory " + cloudAssemblyDirectory + " doesn't exist. " +
"Did you forget to add 'synth' goal to the execution?");
}
CloudDefinition cloudDefinition = CloudDefinition.create(cloudAssemblyDirectory);
execute(cloudDefinition, environmentResolver);
}
protected abstract void execute(CloudDefinition cloudDefinition, EnvironmentResolver environmentResolver);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy