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

shaded.org.apache.maven.model.Prerequisites Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.9.1,
// any modifications will be overwritten.
// ==============================================================

package shaded.shaded.org.apache.maven.model;

/**
 * Describes the prerequisites a project can have.
 * 
 * @version $Revision$ $Date$
 */
@SuppressWarnings( "all" )
public class Prerequisites
    implements java.io.Serializable, java.lang.Cloneable, shaded.shaded.org.apache.maven.model.InputLocationTracker
{

      //--------------------------/
     //- Class/Member Variables -/
    //--------------------------/

    /**
     * 
     *             For a plugin project (packaging is
     * maven-plugin), the minimum version of
     *             Maven required to use the resulting plugin.
* In Maven 2, this was also specifying the minimum * version of Maven required to build a * project, but this usage is deprecated in * Maven 3 and not checked any more: use * the Maven * Enforcer Plugin's * requireMavenVersion rule * instead. * * */ private String maven = "2.0"; /** * Field locations. */ private java.util.Map locations; //-----------/ //- Methods -/ //-----------/ /** * Method clone. * * @return Prerequisites */ public Prerequisites clone() { try { Prerequisites copy = (Prerequisites) super.clone(); if ( copy.locations != null ) { copy.locations = new java.util.LinkedHashMap( copy.locations ); } return copy; } catch ( java.lang.Exception ex ) { throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName() + " does not support clone()" ).initCause( ex ); } } //-- Prerequisites clone() /** * * * @param key * @return InputLocation */ public InputLocation getLocation( Object key ) { return ( locations != null ) ? locations.get( key ) : null; } //-- InputLocation getLocation( Object ) /** * Get for a plugin project (packaging is * maven-plugin), the minimum version of * Maven required to use the resulting plugin.
* In Maven 2, this was also specifying the minimum * version of Maven required to build a * project, but this usage is deprecated in * Maven 3 and not checked any more: use * the Maven * Enforcer Plugin's * requireMavenVersion rule * instead. * * @return String */ public String getMaven() { return this.maven; } //-- String getMaven() /** * * * @param key * @param location */ public void setLocation( Object key, InputLocation location ) { if ( location != null ) { if ( this.locations == null ) { this.locations = new java.util.LinkedHashMap(); } this.locations.put( key, location ); } } //-- void setLocation( Object, InputLocation ) /** * Set for a plugin project (packaging is * maven-plugin), the minimum version of * Maven required to use the resulting plugin.
* In Maven 2, this was also specifying the minimum * version of Maven required to build a * project, but this usage is deprecated in * Maven 3 and not checked any more: use * the Maven * Enforcer Plugin's * requireMavenVersion rule * instead. * * @param maven */ public void setMaven( String maven ) { this.maven = maven; } //-- void setMaven( String ) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy