001// =================== DO NOT EDIT THIS FILE ==================== 002// Generated by Modello 1.8.3, 003// any modifications will be overwritten. 004// ============================================================== 005 006package org.apache.maven.model; 007 008/** 009 * Section for management of default plugin information for use in 010 * a group of POMs. 011 * 012 * 013 * @version $Revision: 965443 $ $Date: 2015-09-14 22:18:52 +0000 (Mon, 14 Sep 2015) $ 014 */ 015@SuppressWarnings( "all" ) 016public class PluginManagement 017 extends PluginContainer 018 implements java.io.Serializable, java.lang.Cloneable 019{ 020 021 //-----------/ 022 //- Methods -/ 023 //-----------/ 024 025 /** 026 * Method clone. 027 * 028 * @return PluginManagement 029 */ 030 public PluginManagement clone() 031 { 032 try 033 { 034 PluginManagement copy = (PluginManagement) super.clone(); 035 036 return copy; 037 } 038 catch ( java.lang.Exception ex ) 039 { 040 throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName() 041 + " does not support clone()" ).initCause( ex ); 042 } 043 } //-- PluginManagement clone() 044 045}