com.carrotgarden.maven.aws.grv.MavenProjectAdaptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carrot-maven-aws-plugin Show documentation
Show all versions of carrot-maven-aws-plugin Show documentation
${project.organization.name} AWS Maven Plugin
/**
* Copyright (C) 2010-2012 Andrei Pozolotin
*
* All rights reserved. Licensed under the OSI BSD License.
*
* http://www.opensource.org/licenses/bsd-license.php
*/
package com.carrotgarden.maven.aws.grv;
import java.util.Properties;
import com.carrotgarden.maven.aws.util.MavenProjectDelegate;
import com.carrotgarden.maven.aws.util.MavenProps;
/**
* maven project proxy with custom properties processor
*/
public class MavenProjectAdaptor extends MavenProjectDelegate {
private final Properties properties;
public MavenProjectAdaptor(final MavenProps mavenProps) {
super(mavenProps.project);
this.properties = new MavenPropertiesAdaptor(mavenProps);
}
@Override
public Properties getProperties() {
return properties;
}
}