All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotgarden.maven.aws.grv.MavenProjectAdaptor Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
/**
 * 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;

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy