org.apache.maven.model.Exclusion 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;
/**
*
*
* The <exclusion>
element contains
* informations required to exclude
* an artifact to the project.
*
*
*
* @version $Revision$ $Date$
*/
public class Exclusion
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The artifact ID of the project to exclude.
*/
private String artifactId;
/**
* The group ID of the project to exclude.
*/
private String groupId;
//-----------/
//- Methods -/
//-----------/
/**
* Get the artifact ID of the project to exclude.
*
* @return String
*/
public String getArtifactId()
{
return this.artifactId;
} //-- String getArtifactId()
/**
* Get the group ID of the project to exclude.
*
* @return String
*/
public String getGroupId()
{
return this.groupId;
} //-- String getGroupId()
/**
* Set the artifact ID of the project to exclude.
*
* @param artifactId
*/
public void setArtifactId( String artifactId )
{
this.artifactId = artifactId;
} //-- void setArtifactId( String )
/**
* Set the group ID of the project to exclude.
*
* @param groupId
*/
public void setGroupId( String groupId )
{
this.groupId = groupId;
} //-- void setGroupId( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy