Package org.apache.maven.model
Class Scm
- java.lang.Object
-
- org.apache.maven.model.Scm
-
- All Implemented Interfaces:
java.io.Serializable
public class Scm extends java.lang.Object implements java.io.Serializable
The<scm>
element contains informations required to the SCM (Source Control Management) of the project.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
connection
The source control management system URL that describes the repository and how to connect to the repository.private java.lang.String
developerConnection
Just likeconnection
, but for developers, i.e.private java.lang.String
tag
The tag of current code.private java.lang.String
url
The URL to the project's browsable SCM repository, such as ViewVC or Fisheye.
-
Constructor Summary
Constructors Constructor Description Scm()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getConnection()
Get the source control management system URL that describes the repository and how to connect to the repository.java.lang.String
getDeveloperConnection()
Get just likeconnection
, but for developers, i.e.java.lang.String
getTag()
Get the tag of current code.java.lang.String
getUrl()
Get the URL to the project's browsable SCM repository, such as ViewVC or Fisheye.void
setConnection(java.lang.String connection)
Set the source control management system URL that describes the repository and how to connect to the repository.void
setDeveloperConnection(java.lang.String developerConnection)
Set just likeconnection
, but for developers, i.e.void
setTag(java.lang.String tag)
Set the tag of current code.void
setUrl(java.lang.String url)
Set the URL to the project's browsable SCM repository, such as ViewVC or Fisheye.
-
-
-
Field Detail
-
connection
private java.lang.String connection
The source control management system URL that describes the repository and how to connect to the repository. For more information, see the URL format and list of supported SCMs. This connection is read-only.
-
developerConnection
private java.lang.String developerConnection
Just likeconnection
, but for developers, i.e. this scm connection will not be read only.
-
tag
private java.lang.String tag
The tag of current code. By default, it's set to HEAD during development.
-
url
private java.lang.String url
The URL to the project's browsable SCM repository, such as ViewVC or Fisheye.
-
-
Method Detail
-
getConnection
public java.lang.String getConnection()
Get the source control management system URL that describes the repository and how to connect to the repository. For more information, see the URL format and list of supported SCMs. This connection is read-only.- Returns:
- String
-
getDeveloperConnection
public java.lang.String getDeveloperConnection()
Get just likeconnection
, but for developers, i.e. this scm connection will not be read only.- Returns:
- String
-
getTag
public java.lang.String getTag()
Get the tag of current code. By default, it's set to HEAD during development.- Returns:
- String
-
getUrl
public java.lang.String getUrl()
Get the URL to the project's browsable SCM repository, such as ViewVC or Fisheye.- Returns:
- String
-
setConnection
public void setConnection(java.lang.String connection)
Set the source control management system URL that describes the repository and how to connect to the repository. For more information, see the URL format and list of supported SCMs. This connection is read-only.- Parameters:
connection
- a connection object.
-
setDeveloperConnection
public void setDeveloperConnection(java.lang.String developerConnection)
Set just likeconnection
, but for developers, i.e. this scm connection will not be read only.- Parameters:
developerConnection
- a developerConnection object.
-
setTag
public void setTag(java.lang.String tag)
Set the tag of current code. By default, it's set to HEAD during development.- Parameters:
tag
- a tag object.
-
setUrl
public void setUrl(java.lang.String url)
Set the URL to the project's browsable SCM repository, such as ViewVC or Fisheye.- Parameters:
url
- a url object.
-
-