org.apache.maven.model.PluginManagement Maven / Gradle / Ivy
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 2.1.2,
// any modifications will be overwritten.
// ==============================================================
package org.apache.maven.model;
/**
* Section for management of default plugin information for use in
* a group of POMs.
*
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class PluginManagement
extends PluginContainer
implements java.io.Serializable, java.lang.Cloneable
{
//-----------/
//- Methods -/
//-----------/
/**
* Method clone.
*
* @return PluginManagement
*/
public PluginManagement clone()
{
try
{
PluginManagement copy = (PluginManagement) super.clone();
return copy;
}
catch ( java.lang.Exception ex )
{
throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
+ " does not support clone()" ).initCause( ex );
}
} //-- PluginManagement clone()
}