View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.0.1 on 2009-09-09 03:30:24,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.model;
9   
10  /**
11   * Contains the plugins management informations for the project.
12   * 
13   * @version $Revision$ $Date$
14   */
15  public class PluginConfiguration
16      extends PluginContainer
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Default plugin information to be made available for
26       * reference by projects
27       *             derived from this one. This plugin configuration
28       * will not be resolved or bound to the
29       *             lifecycle unless referenced. Any local
30       * configuration for a given plugin will override
31       *             the plugin's entire definition here.
32       */
33      private PluginManagement pluginManagement;
34  
35  
36        //-----------/
37       //- Methods -/
38      //-----------/
39  
40      /**
41       * Get default plugin information to be made available for
42       * reference by projects
43       *             derived from this one. This plugin configuration
44       * will not be resolved or bound to the
45       *             lifecycle unless referenced. Any local
46       * configuration for a given plugin will override
47       *             the plugin's entire definition here.
48       * 
49       * @return PluginManagement
50       */
51      public PluginManagement getPluginManagement()
52      {
53          return this.pluginManagement;
54      } //-- PluginManagement getPluginManagement()
55  
56      /**
57       * Set default plugin information to be made available for
58       * reference by projects
59       *             derived from this one. This plugin configuration
60       * will not be resolved or bound to the
61       *             lifecycle unless referenced. Any local
62       * configuration for a given plugin will override
63       *             the plugin's entire definition here.
64       * 
65       * @param pluginManagement
66       */
67      public void setPluginManagement( PluginManagement pluginManagement )
68      {
69          this.pluginManagement = pluginManagement;
70      } //-- void setPluginManagement( PluginManagement )
71  
72  
73  }