org.apache.maven.model.Prerequisites 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;
/**
* Describes the prerequisites a project can have.
*
* @version $Revision$ $Date$
*/
public class Prerequisites
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The minimum version of Maven required to build the project,
* or to use this
* plugin.
*/
private String maven = "2.0";
//-----------/
//- Methods -/
//-----------/
/**
* Get the minimum version of Maven required to build the
* project, or to use this
* plugin.
*
* @return String
*/
public String getMaven()
{
return this.maven;
} //-- String getMaven()
/**
* Set the minimum version of Maven required to build the
* project, or to use this
* plugin.
*
* @param maven
*/
public void setMaven( String maven )
{
this.maven = maven;
} //-- void setMaven( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy