Class Model

All Implemented Interfaces:
Serializable, Cloneable, InputLocationTracker

public class Model extends ModelBase implements Serializable, Cloneable
The <project> element is the root of the descriptor. The following table lists all of the possible child elements.
Version:
$Revision$ $Date$
See Also:
  • Constructor Details Link icon

    • Model Link icon

      public Model()
  • Method Details Link icon

    • addContributor Link icon

      public void addContributor(Contributor contributor)
      Method addContributor.
      Parameters:
      contributor - a contributor object.
    • addDeveloper Link icon

      public void addDeveloper(Developer developer)
      Method addDeveloper.
      Parameters:
      developer - a developer object.
    • addLicense Link icon

      public void addLicense(License license)
      Method addLicense.
      Parameters:
      license - a license object.
    • addMailingList Link icon

      public void addMailingList(MailingList mailingList)
      Method addMailingList.
      Parameters:
      mailingList - a mailingList object.
    • addProfile Link icon

      public void addProfile(Profile profile)
      Method addProfile.
      Parameters:
      profile - a profile object.
    • clone Link icon

      public Model clone()
      Method clone.
      Overrides:
      clone in class ModelBase
      Returns:
      Model
    • getArtifactId Link icon

      public String getArtifactId()
      Get the identifier for this artifact that is unique within the group given by the group ID. An artifact is something that is either produced or used by a project. Examples of artifacts produced by Maven for a project include: JARs, source and binary distributions, and WARs.
      Returns:
      String
    • getBuild Link icon

      public Build getBuild()
      Get information required to build the project.
      Returns:
      Build
    • getChildProjectUrlInheritAppendPath Link icon

      public String getChildProjectUrlInheritAppendPath()
      Get when children inherit from project's url, append path or not? Note: While the type of this field is String for technical reasons, the semantic type is actually Boolean
      Default value is: true
      Since: Maven 3.6.1.
      Returns:
      String
    • getCiManagement Link icon

      public CiManagement getCiManagement()
      Get the project's continuous integration information.
      Returns:
      CiManagement
    • getContributors Link icon

      public List<Contributor> getContributors()
      Method getContributors.
      Returns:
      List
    • getDescription Link icon

      public String getDescription()
      Get a detailed description of the project, used by Maven whenever it needs to describe the project, such as on the web site. While this element can be specified as CDATA to enable the use of HTML tags within the description, it is discouraged to allow plain text representation. If you need to modify the index page of the generated web site, you are able to specify your own instead of adjusting this text.
      Returns:
      String
    • getDevelopers Link icon

      public List<Developer> getDevelopers()
      Method getDevelopers.
      Returns:
      List
    • getGroupId Link icon

      public String getGroupId()
      Get a universally unique identifier for a project. It is normal to use a fully-qualified package name to distinguish it from other projects with a similar name (eg. org.apache.maven).
      Returns:
      String
    • getInceptionYear Link icon

      public String getInceptionYear()
      Get the year of the project's inception, specified with 4 digits. This value is used when generating copyright notices as well as being informational.
      Returns:
      String
    • getIssueManagement Link icon

      public IssueManagement getIssueManagement()
      Get the project's issue management system information.
      Returns:
      IssueManagement
    • getLicenses Link icon

      public List<License> getLicenses()
      Method getLicenses.
      Returns:
      List
    • getMailingLists Link icon

      public List<MailingList> getMailingLists()
      Method getMailingLists.
      Returns:
      List
    • getModelEncoding Link icon

      public String getModelEncoding()
      Get the modelEncoding field.
      Returns:
      String
    • getModelVersion Link icon

      public String getModelVersion()
      Get declares to which version of project descriptor this POM conforms.
      Returns:
      String
    • getName Link icon

      public String getName()
      Get the full name of the project.
      Returns:
      String
    • getOrganization Link icon

      public Organization getOrganization()
      Get this element describes various attributes of the organization to which the project belongs. These attributes are utilized when documentation is created (for copyright notices and links).
      Returns:
      Organization
    • getPackaging Link icon

      public String getPackaging()
      Get the type of artifact this project produces, for example jar war ear pom. Plugins can create their own packaging, and therefore their own packaging types, so this list does not contain all possible types.
      Returns:
      String
    • getParent Link icon

      public Parent getParent()
      Get the location of the parent project, if one exists. Values from the parent project will be the default for this project if they are left unspecified. The location is given as a group ID, artifact ID and version.
      Returns:
      Parent
    • getPrerequisites Link icon

      public Prerequisites getPrerequisites()
      Get describes the prerequisites in the build environment for this project.
      Returns:
      Prerequisites
    • getProfiles Link icon

      public List<Profile> getProfiles()
      Method getProfiles.
      Returns:
      List
    • getScm Link icon

      public Scm getScm()
      Get specification for the SCM used by the project, such as CVS, Subversion, etc.
      Returns:
      Scm
    • getUrl Link icon

      public String getUrl()
      Get the URL to the project's homepage.
      Default value is: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if project's child.project.url.inherit.append.path="false"
      Returns:
      String
    • getVersion Link icon

      public String getVersion()
      Get the current version of the artifact produced by this project.
      Returns:
      String
    • removeContributor Link icon

      public void removeContributor(Contributor contributor)
      Method removeContributor.
      Parameters:
      contributor - a contributor object.
    • removeDeveloper Link icon

      public void removeDeveloper(Developer developer)
      Method removeDeveloper.
      Parameters:
      developer - a developer object.
    • removeLicense Link icon

      public void removeLicense(License license)
      Method removeLicense.
      Parameters:
      license - a license object.
    • removeMailingList Link icon

      public void removeMailingList(MailingList mailingList)
      Method removeMailingList.
      Parameters:
      mailingList - a mailingList object.
    • removeProfile Link icon

      public void removeProfile(Profile profile)
      Method removeProfile.
      Parameters:
      profile - a profile object.
    • setArtifactId Link icon

      public void setArtifactId(String artifactId)
      Set the identifier for this artifact that is unique within the group given by the group ID. An artifact is something that is either produced or used by a project. Examples of artifacts produced by Maven for a project include: JARs, source and binary distributions, and WARs.
      Parameters:
      artifactId - a artifactId object.
    • setBuild Link icon

      public void setBuild(Build build)
      Set information required to build the project.
      Parameters:
      build - a build object.
    • setChildProjectUrlInheritAppendPath Link icon

      public void setChildProjectUrlInheritAppendPath(String childProjectUrlInheritAppendPath)
      Set when children inherit from project's url, append path or not? Note: While the type of this field is String for technical reasons, the semantic type is actually Boolean
      Default value is: true
      Since: Maven 3.6.1.
      Parameters:
      childProjectUrlInheritAppendPath - a childProjectUrlInheritAppendPath object.
    • setCiManagement Link icon

      public void setCiManagement(CiManagement ciManagement)
      Set the project's continuous integration information.
      Parameters:
      ciManagement - a ciManagement object.
    • setContributors Link icon

      public void setContributors(List<Contributor> contributors)
      Set describes the contributors to a project that are not yet committers.
      Parameters:
      contributors - a contributors object.
    • setDescription Link icon

      public void setDescription(String description)
      Set a detailed description of the project, used by Maven whenever it needs to describe the project, such as on the web site. While this element can be specified as CDATA to enable the use of HTML tags within the description, it is discouraged to allow plain text representation. If you need to modify the index page of the generated web site, you are able to specify your own instead of adjusting this text.
      Parameters:
      description - a description object.
    • setDevelopers Link icon

      public void setDevelopers(List<Developer> developers)
      Set describes the committers of a project.
      Parameters:
      developers - a developers object.
    • setGroupId Link icon

      public void setGroupId(String groupId)
      Set a universally unique identifier for a project. It is normal to use a fully-qualified package name to distinguish it from other projects with a similar name (eg. org.apache.maven).
      Parameters:
      groupId - a groupId object.
    • setInceptionYear Link icon

      public void setInceptionYear(String inceptionYear)
      Set the year of the project's inception, specified with 4 digits. This value is used when generating copyright notices as well as being informational.
      Parameters:
      inceptionYear - a inceptionYear object.
    • setIssueManagement Link icon

      public void setIssueManagement(IssueManagement issueManagement)
      Set the project's issue management system information.
      Parameters:
      issueManagement - a issueManagement object.
    • setLicenses Link icon

      public void setLicenses(List<License> licenses)
      Set this element describes all of the licenses for this project. Each license is described by a license element, which is then described by additional elements. Projects should only list the license(s) that applies to the project and not the licenses that apply to dependencies. If multiple licenses are listed, it is assumed that the user can select any of them, not that they must accept all.
      Parameters:
      licenses - a licenses object.
    • setMailingLists Link icon

      public void setMailingLists(List<MailingList> mailingLists)
      Set contains information about a project's mailing lists.
      Parameters:
      mailingLists - a mailingLists object.
    • setModelEncoding Link icon

      public void setModelEncoding(String modelEncoding)
      Set the modelEncoding field.
      Parameters:
      modelEncoding - a modelEncoding object.
    • setModelVersion Link icon

      public void setModelVersion(String modelVersion)
      Set declares to which version of project descriptor this POM conforms.
      Parameters:
      modelVersion - a modelVersion object.
    • setName Link icon

      public void setName(String name)
      Set the full name of the project.
      Parameters:
      name - a name object.
    • setOrganization Link icon

      public void setOrganization(Organization organization)
      Set this element describes various attributes of the organization to which the project belongs. These attributes are utilized when documentation is created (for copyright notices and links).
      Parameters:
      organization - a organization object.
    • setPackaging Link icon

      public void setPackaging(String packaging)
      Set the type of artifact this project produces, for example jar war ear pom. Plugins can create their own packaging, and therefore their own packaging types, so this list does not contain all possible types.
      Parameters:
      packaging - a packaging object.
    • setParent Link icon

      public void setParent(Parent parent)
      Set the location of the parent project, if one exists. Values from the parent project will be the default for this project if they are left unspecified. The location is given as a group ID, artifact ID and version.
      Parameters:
      parent - a parent object.
    • setPrerequisites Link icon

      public void setPrerequisites(Prerequisites prerequisites)
      Set describes the prerequisites in the build environment for this project.
      Parameters:
      prerequisites - a prerequisites object.
    • setProfiles Link icon

      public void setProfiles(List<Profile> profiles)
      Set a listing of project-local build profiles which will modify the build process when activated.
      Parameters:
      profiles - a profiles object.
    • setScm Link icon

      public void setScm(Scm scm)
      Set specification for the SCM used by the project, such as CVS, Subversion, etc.
      Parameters:
      scm - a scm object.
    • setUrl Link icon

      public void setUrl(String url)
      Set the URL to the project's homepage.
      Default value is: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if project's child.project.url.inherit.append.path="false"
      Parameters:
      url - a url object.
    • setVersion Link icon

      public void setVersion(String version)
      Set the current version of the artifact produced by this project.
      Parameters:
      version - a version object.
    • getPomFile Link icon

      public File getPomFile()
      Gets the POM file for the corresponding project (if any).
      Returns:
      The POM file from which this model originated or null if this model does not belong to a local project (e.g. describes the metadata of some artifact from the repository).
    • setPomFile Link icon

      public void setPomFile(File pomFile)
    • getProjectDirectory Link icon

      public File getProjectDirectory()
      Gets the base directory for the corresponding project (if any).
      Returns:
      The base directory for the corresponding project or null if this model does not belong to a local project (e.g. describes the metadata of some artifact from the repository).
    • getId Link icon

      public String getId()
      Returns:
      the model id as groupId:artifactId:packaging:version
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object
    • isChildProjectUrlInheritAppendPath Link icon

      public boolean isChildProjectUrlInheritAppendPath()
    • setChildProjectUrlInheritAppendPath Link icon

      public void setChildProjectUrlInheritAppendPath(boolean childProjectUrlInheritAppendPath)