Class ScmDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- biz.aQute.bnd.reporter.manifest.dto.ScmDTO
-
public class ScmDTO extends org.osgi.dto.DTO
The<scm>
element contains informations required to the SCM (Source Control Management) of the project.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
connection
The source control management system URL that describes the repository and how to connect to the repository.java.lang.String
developerConnection
Just likeconnection
, but for developers, i.e.java.lang.String
tag
The tag of current code.java.lang.String
url
The URL to the project's browsable SCM repository, such as ViewVC or Fisheye.
-
Constructor Summary
Constructors Constructor Description ScmDTO()
-
-
-
Field Detail
-
connection
public 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.
Default value is: parent value [+ path adjustment] + artifactId
-
developerConnection
public java.lang.String developerConnection
Just likeconnection
, but for developers, i.e. this scm connection will not be read only.
Default value is: parent value [+ path adjustment] + artifactId
-
tag
public java.lang.String tag
The tag of current code. By default, it's set to HEAD during development.
-
url
public java.lang.String url
The URL to the project's browsable SCM repository, such as ViewVC or Fisheye.
Default value is: parent value [+ path adjustment] + artifactId
-
-