Package com.bzzzapp.aws.gradle

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


    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

    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

Related Classes of com.bzzzapp.aws.gradle.AwsExtension

Copyright © 2018 www.massapicom. 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.