org.apache.maven.model.PluginConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2009-08-06 15:13:09,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.model;
/**
* Contains the plugins management informations for the project.
*
* @version $Revision$ $Date$
*/
public class PluginConfiguration
extends PluginContainer
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Default plugin information to be made available for
* reference by projects
* derived from this one. This plugin configuration
* will not be resolved or bound to the
* lifecycle unless referenced. Any local
* configuration for a given plugin will override
* the plugin's entire definition here.
*/
private PluginManagement pluginManagement;
//-----------/
//- Methods -/
//-----------/
/**
* Get default plugin information to be made available for
* reference by projects
* derived from this one. This plugin configuration
* will not be resolved or bound to the
* lifecycle unless referenced. Any local
* configuration for a given plugin will override
* the plugin's entire definition here.
*
* @return PluginManagement
*/
public PluginManagement getPluginManagement()
{
return this.pluginManagement;
} //-- PluginManagement getPluginManagement()
/**
* Set default plugin information to be made available for
* reference by projects
* derived from this one. This plugin configuration
* will not be resolved or bound to the
* lifecycle unless referenced. Any local
* configuration for a given plugin will override
* the plugin's entire definition here.
*
* @param pluginManagement
*/
public void setPluginManagement( PluginManagement pluginManagement )
{
this.pluginManagement = pluginManagement;
} //-- void setPluginManagement( PluginManagement )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy