org.apache.maven.model
Class Scm

java.lang.Object
  extended by org.apache.maven.model.Scm
All Implemented Interfaces:
Serializable

public class Scm
extends Object
implements Serializable

The <scm> element contains informations required to the SCM (Source Control Management) of the project.

Version:
$Revision$ $Date$
See Also:
Serialized Form

Constructor Summary
Scm()
           
 
Method Summary
 String getConnection()
          Get The source control management system URL that describes the repository and how to connect to the repository.
 String getDeveloperConnection()
          Get Just like connection, but for developers, i.e.
 String getModelEncoding()
           
 String getTag()
          Get the tag of current code.
 String getUrl()
          Get the URL to the project's browsable SCM repository, such as ViewVC or Fisheye.
 void setConnection(String connection)
          Set The source control management system URL that describes the repository and how to connect to the repository.
 void setDeveloperConnection(String developerConnection)
          Set Just like connection, but for developers, i.e.
 void setModelEncoding(String modelEncoding)
          Set an encoding used for reading/writing the model.
 void setTag(String tag)
          Set the tag of current code.
 void setUrl(String url)
          Set the URL to the project's browsable SCM repository, such as ViewVC or Fisheye.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Scm

public Scm()
Method Detail

getConnection

public 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 String getDeveloperConnection()
Get Just like connection, but for developers, i.e. this scm connection will not be read only.

Returns:
String

getTag

public String getTag()
Get the tag of current code. By default, it's set to HEAD during development.

Returns:
String

getUrl

public String getUrl()
Get the URL to the project's browsable SCM repository, such as ViewVC or Fisheye.

Returns:
String

setConnection

public void setConnection(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 -

setDeveloperConnection

public void setDeveloperConnection(String developerConnection)
Set Just like connection, but for developers, i.e. this scm connection will not be read only.

Parameters:
developerConnection -

setTag

public void setTag(String tag)
Set the tag of current code. By default, it's set to HEAD during development.

Parameters:
tag -

setUrl

public void setUrl(String url)
Set the URL to the project's browsable SCM repository, such as ViewVC or Fisheye.

Parameters:
url -

setModelEncoding

public void setModelEncoding(String modelEncoding)
Set an encoding used for reading/writing the model.

Parameters:
modelEncoding - the encoding used when reading/writing the model.

getModelEncoding

public String getModelEncoding()
Returns:
the current encoding used when reading/writing this model.


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.