Class 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 like connection, 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()  
    • Method Summary

      • Methods inherited from class org.osgi.dto.DTO

        toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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 like connection, 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
    • Constructor Detail

      • ScmDTO

        public ScmDTO()