org.kuali.maven.plugins.s3.BucketDeltasMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3-maven-plugin Show documentation
Show all versions of s3-maven-plugin Show documentation
Provide a way for Maven to interact with Amazon S3
The newest version!
/**
* Copyright 2011-2012 The Kuali Foundation
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.opensource.org/licenses/ecl2.php
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.kuali.maven.plugins.s3;
import java.io.File;
import org.apache.maven.plugin.AbstractMojo;
import org.kuali.common.aws.s3.DeltaUtils;
import org.kuali.common.aws.s3.pojo.AccountDeltaSummary;
import com.amazonaws.services.s3.model.AmazonS3Exception;
/**
* @goal bucketdeltas
*/
public class BucketDeltasMojo extends AbstractMojo {
DeltaUtils deltaUtils = DeltaUtils.getInstance();
/**
* The file where the CSV summary is written. If the file already exists, it is appended to.
*
* @parameter expression="${s3.csvFile}" default-value="${project.build.directory}/s3/summary.csv"
*/
File csvFile;
@Override
public void execute() {
try {
AccountDeltaSummary ads = deltaUtils.getAccountDeltaSummary(csvFile);
String s = deltaUtils.toString(ads);
getLog().info("\n\n" + s);
} catch (Exception e) {
throw new AmazonS3Exception("Unexpected error", e);
}
}
public File getCsvFile() {
return csvFile;
}
public void setCsvFile(File csvFile) {
this.csvFile = csvFile;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy