Examples of AwsExtension


Examples of com.bzzzapp.aws.gradle.AwsExtension

    public static final String GRADLE_NAME = "awsS3Deploy";

    @TaskAction
    public void awsS3Deploy() {
        S3Extension awss3Config = getExtensions().getByType(S3Extension.class);
        AwsExtension awsConfig = getProject().getExtensions().getByType(AwsExtension.class);
        S3Deployer deployer = new S3Deployer(awsConfig.getAwsAccessKeyId(), awsConfig.getAwsSecretSharedKey(),
                awss3Config.getBucketName(), awss3Config.getPathToUpload());
        deployer.perform();
    }
View Full Code Here

Examples of com.bzzzapp.aws.gradle.AwsExtension

    public static final String GRADLE_NAME = "awsEBDeploy";

    @TaskAction
    public void awsEBDeploy() throws Exception {
        EBExtension awsebConfig = getExtensions().getByType(EBExtension.class);
        AwsExtension awsConfig = getProject().getExtensions().getByType(AwsExtension.class);
        EBDeployer deployer = new EBDeployer(
                awsConfig.getAwsAccessKeyId(),
                awsConfig.getAwsSecretSharedKey(),
                awsebConfig.getAwsRegion(),
                awsebConfig.getApplicationName(),
                awsebConfig.getEnvironmentName(),
                awsebConfig.getBucketName(),
                awsebConfig.getBucketFolder(),
View Full Code Here

Examples of com.bzzzapp.aws.gradle.AwsExtension

    public static final String GRADLE_NAME = "awsEBDeploy";

    @TaskAction
    public void awsEBDeploy() throws Exception {
        EBExtension awsebConfig = getExtensions().getByType(EBExtension.class);
        AwsExtension awsConfig = getProject().getExtensions().getByType(AwsExtension.class);
        EBDeployer deployer = new EBDeployer(
                awsConfig.getAwsAccessKeyId(),
                awsConfig.getAwsSecretSharedKey(),
                awsebConfig.getAwsRegion(),
                awsebConfig.getApplicationName(),
                awsebConfig.getEnvironmentName(),
                awsebConfig.getBucketName(),
                awsebConfig.getKeyPrefix(),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.