Scp

Downloads artifacts, files, and signatures from a SCP server.

Configuration

Legend:

  • required

  • optional

  • may use environment variable

  • accepts Name Templates

  • YAML

  • TOML

  • JSON

  • Maven

  • Gradle

# 
download:
  # 
  scp:
    # Downloaders require a name.
    # 
    app:

      # Enables or disables the downloader.
      # Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
      # Defaults to `NEVER`.
      #  
      active: ALWAYS

      # Defines the connection timeout in seconds.
      # Defaults to `20`.
      # 
      connectTimeout: 20

      # Defines the read timeout in seconds.
      # Defaults to `60`.
      # 
      readTimeout: 60

      # Additional properties used when evaluating templates.
      # 
      extraProperties:
        # Key will be capitalized and prefixed with `scp`, i.e, `scpFoo`.
        foo: bar

      # Host where the SCP service is enabled.
      #  
      host: downloads.acme.com

      # Port number of SCP service.
      # Defaults to `22`.
      #  
      port: 22

      # The username required for authorization.
      #  
      username: __USE_ENVIRONMENT_VARIABLE__

      # Password for login into the SCP service.
      #  
      password: __USE_ENVIRONMENT_VARIABLE__

      # The public SSH key.
      #  
      publicKey: __USE_ENVIRONMENT_VARIABLE__

      # The private SSH key.
      #  
      privateKey: __USE_ENVIRONMENT_VARIABLE__

      # The passphrase required to read private keys.
      #  
      passphrase: __USE_ENVIRONMENT_VARIABLE__

      # The remote server's SSH fingerprint.
      #  
      fingerprint: __USE_ENVIRONMENT_VARIABLE__

      # A list of assets to be downloaded.
      # 
      assets:
          # Full download path to asset.
          #  
        - input: '/logos/logo-256x256.png'

          # Local path where asset will be downloaded to.
          # Defaults to `#{jreleaser.downloadDirectory}/#{downloader.name}`.
          #  
          output: '{{projectName}}.png'

          # Unpack options
          # 
          unpack:
            # Unpack input archive when `true`.
            # Defaults to `false`.
            # 
            enabled: false

            # Skip the archive's root entry from the unpacked directory when `true`.
            # Defaults to `false`.
            # 
            skipRootEntry: false
# Downloaders require a name.
# 
[download.scp.app]

  # Enables or disables the downloader.
  # Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
  # Defaults to `NEVER`.
  #  
  active = "ALWAYS"

  # Defines the connection timeout in seconds.
  # Defaults to `20`.
  # 
  connectTimeout = 20

  # Defines the read timeout in seconds.
  # Defaults to `60`.
  # 
  readTimeout = 60

  # Additional properties used when evaluating templates.
  # 
  extraProperties.foo = "bar"
  # Key will be capitalized and prefixed with `scp`, i.e, `scpFoo`.

  # Host where the SCP service is enabled.
  #  
  host = "downloads.acme.com"

  # Port number of SCP service.
  # Defaults to `port`.
  #  
  port = 22

  # The username required for authorization.
  #  
  username = "__USE_ENVIRONMENT_VARIABLE__"

  # Password for login into the SCP service.
  #  
  password = "__USE_ENVIRONMENT_VARIABLE__"

  # The public SSH key.
  #  
  publicKey = "__USE_ENVIRONMENT_VARIABLE__"

  # The private SSH key.
  #  
  privateKey = "__USE_ENVIRONMENT_VARIABLE__"

  # The passphrase required to read private keys.
  #  
  passphrase = "__USE_ENVIRONMENT_VARIABLE__"

  # The remote server's SSH fingerprint.
  #  
  fingerprint = "__USE_ENVIRONMENT_VARIABLE__"

  # A list of assets to be downloaded.
  # 
  [[dowload.scp.app.assets]]
    # Full download path to asset.
    #  
    input = "/logos/logo-256x256.png"

    # Local path where asset will be downloaded to.
    # Defaults to `#{jreleaser.downloadDirectory}/#{downloader.name}`.
    #  
    output = "{{projectName}}.png"

    # Unpack input archive when `true`.
    # Defaults to `false`.
    # 
    unpack.enabled: false

    # Skip the archive's root entry from the unpacked directory when `true`.
    # Defaults to `false`.
    # 
    unpack.skipRootEntry: false
{
  // 
  "download": {
    // 
    "scp": {
      // Downloaders require a name.
      // 
      "app": {

        // Enables or disables the downloader.
        // Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
        // Defaults to `NEVER`.
        //  
        "active": "ALWAYS",

        // Defines the connection timeout in seconds.
        // Defaults to `20`.
        // 
        "connectTimeout": 20,

        // Defines the read timeout in seconds.
        // Defaults to `60`.
        // 
        "readTimeout": 60,

        // Additional properties used when evaluating templates.
        // 
        "extraProperties": {
          // Key will be capitalized and prefixed with `scp`, i.e, `scpFoo`.
          "foo": "bar"
        },

        // Host where the SCP service is enabled.
        // If left unspecified, the `JRELEASER_SCP_${name}_HOST`
        // environment variable must be defined.
        //  
        "host": "downloads.acme.com",

        // Port number of SCP service.
        // If left unspecified, the `JRELEASER_SCP_${name}_PORT`
        // environment variable must be defined.
        // Defaults to `22`.
        //  
        "port": 22,

        // The username required for authorization.
        // If left unspecified, the `JRELEASER_SCP_${name}_USERNAME`
        // environment variable must be defined.
        //  
        "username": "__USE_ENVIRONMENT_VARIABLE__",

        // Password for login into the SCP service.
        // If left unspecified, the `JRELEASER_SCP_${name}_PASSWORD`
        // environment variable must be defined.
        //  
        "password": "__USE_ENVIRONMENT_VARIABLE__",

        // The public SSH key.
        //  
        "publicKey": "__USE_ENVIRONMENT_VARIABLE__",

        // The private SSH key.
        //  
        "privateKey": "__USE_ENVIRONMENT_VARIABLE__",

        // The passphrase required to read private keys.
        //  
        "passphrase": "__USE_ENVIRONMENT_VARIABLE__",

        // The remote server's SSH fingerprint.
        //  
        "fingerprint": "__USE_ENVIRONMENT_VARIABLE__",

        // A list of assets to be downloaded.
        // 
        "assets": [
          {
            // Full download path to asset.
            //  
            "input": "/logos/logo-256x256.png",

            // Local path where asset will be downloaded to.
            // Defaults to `#{jreleaser.downloadDirectory}/#{downloader.name}`.
            //  
            "output": "{{projectName}}.png",

            // Unpack options
            // 
            "unpack": {
              // Unpack input archive when `true`.
              // Defaults to `false`.
              // 
              "enabled": false,

              // Skip the archive's root entry from the unpacked directory when `true`.
              // Defaults to `false`.
              // 
              "skipRootEntry": false
            }
          }
        ]
      }
    }
  }
}
<jreleaser>
  <!--
    
  -->
  <download>
    <!--
      
    -->
    <scp>
      <!--
        Downloaders require a name.
        
      -->
      <app>
        <!--
          Enables or disables the distribution.
          Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
          Defaults to `NEVER`.
           
        -->
        <active>ALWAYS</active>

        <!--
          Defines the connection timeout in seconds.
          Defaults to `20`.
          
        -->
        <connectTimeout>20</connectTimeout>

        <!--
          Defines the read timeout in seconds.
          Defaults to `60`.
          
        -->
        <readTimeout>60</readTimeout>

        <!--
          Additional properties used when evaluating templates.
          
        -->
        <extraProperties>
          <!--
            Key will be capitalized and prefixed with `scp`, i.e, `scpFoo`.
          -->
          <foo>bar</foo>
        </extraProperties>

        <!--
          Host where the SCP service is enabled.
           
        -->
        <host>downloads.acme.com</host>

        <!--
          Port number of SCP service.
          Defaults to `22`.
           
        -->
        <port>22</port>

        <!--
          The username required for authorization.
           
        -->
        <username>__USE_ENVIRONMENT_VARIABLE__</username>

        <!--
          Password for login into the SCP service.
           
        -->
        <password>__USE_ENVIRONMENT_VARIABLE__</password>

        <!--
          The public SSH key.
           
        -->
        <publicKey>__USE_ENVIRONMENT_VARIABLE__</publicKey>

        <!--
          The private SSH key.
           
        -->
        <privateKey>__USE_ENVIRONMENT_VARIABLE__</privateKey>

        <!--
          The passphrase required to read private keys.
           
        -->
        <passphrase>__USE_ENVIRONMENT_VARIABLE__</passphrase>

        <!--
          The remote server's SSH fingerprint.
           
        -->
        <fingerprint>__USE_ENVIRONMENT_VARIABLE__</fingerprint>

        <!--
          A list of assets to be downloaded.
          
        -->
        <assets>
          <asset>
            <!--
              Full download path to asset.
               
            -->
            <input>/logos/logo-256x256.png</input>

            <!--
              Local path where asset will be downloaded to.
              Defaults to `#{jreleaser.downloadDirectory}/#{downloader.name}`.
               
            -->
            <output>{{projectName}}.png</output>

            <!--
              Unpack options
              
            -->
            <unpack>
              <!--
                Unpack input archive when `true`.
                Defaults to `false`.
                
              -->
              <enabled>false</enabled>

              <!--
                Skip the archive's root entry from the unpacked directory when `true`.
                Defaults to `false`.
                
              -->
              <skipRootEntry>false</skipRootEntry>
            </unpack>
          </asset>
        </assets>
      </app>
    </scp>
  </download>
</jreleaser>
jreleaser {
  // 
  download {
    // 
    scp {
      // Downloaders require a name.
      // 
      app {

        // Enables or disables the downloader.
        // Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
        // Defaults to `NEVER`.
        //  
        active = 'ALWAYS'

        // Defines the connection timeout in seconds.
        // Defaults to `20`.
        // 
        connectTimeout = 20

        // Defines the read timeout in seconds.
        // Defaults to `60`.
        // 
        readTimeout = 60

        // Additional properties used when evaluating templates.
        // Key will be capitalized and prefixed with `scp`, i.e, `scpFoo`.
        // 
        extraProperties.put('foo', 'bar')

        // Host where the SCP service is enabled.
        //  
        host = 'downloads.acme.com'

        // Port number of SCP service.
        // Defaults to `22`.
        //  
        port = 22

        // The username required for authorization.
        //  
        username = '__USE_ENVIRONMENT_VARIABLE__'

        // Password for login into the SCP service.
        //  
        password = '__USE_ENVIRONMENT_VARIABLE__'

        // The public SSH key.
        //  
        publicKey = '__USE_ENVIRONMENT_VARIABLE__'

        // The private SSH key.
        //  
        privateKey = '__USE_ENVIRONMENT_VARIABLE__'

        // The passphrase required to read private keys.
        //  
        passphrase = '__USE_ENVIRONMENT_VARIABLE__'

        // The remote server's SSH fingerprint.
        //  
        fingerprint = '__USE_ENVIRONMENT_VARIABLE__'

        // A list of assets to be downloaded.
        // 
        asset {
          // Full download path to asset.
          //  
          input = '/logos/logo-256x256.png'

          // Local path where asset will be downloaded to.
          // Defaults to `#{jreleaser.downloadDirectory}/#{downloader.name}`.
          //  
          output = '{{projectName}}.png'

          // Unpack options
          // 
          unpack {
            // Unpack input archive when `true`.
            // Defaults to `false`.
            // 
            enabled = false

            // Skip the archive's root entry from the unpacked directory when `true`.
            // Defaults to `false`.
            // 
            skipRootEntry = false
          }
       }
      }
    }
  }
}

Environment

When not explicitly set, the value of the following properties may be resolved from an environment variable or a system property as shown in the table. The system property takes precedence over the environment variable.

System Property Environment Variable

active

jreleaser.download.scp.${name}.active
jreleaser.download.scp.active

JRELEASER_DOWNLOAD_SCP_${name}_ACTIVE
JRELEASER_DOWNLOAD_SCP_ACTIVE

host

jreleaser.download.scp.${name}.host
jreleaser.download.ssh.${name}.host
jreleaser.download.scp.host
jreleaser.download.ssh.host
jreleaser.scp.${name}.host
jreleaser.ssh.${name}.host
jreleaser.scp.host
jreleaser.ssh.host

JRELEASER_DOWNLOAD_SCP_${name}_HOST
JRELEASER_DOWNLOAD_SSH_${name}_HOST
JRELEASER_DOWNLOAD_SCP_HOST
JRELEASER_DOWNLOAD_SSH_HOST
JRELEASER_SCP_${name}_HOST
JRELEASER_SSH_${name}_HOST
JRELEASER_SCP_HOST
JRELEASER_SSH_HOST

port

jreleaser.download.scp.${name}.port
jreleaser.download.ssh.${name}.port
jreleaser.download.scp.port
jreleaser.download.ssh.port
jreleaser.scp.${name}.port
jreleaser.ssh.${name}.port
jreleaser.scp.port
jreleaser.ssh.port

JRELEASER_DOWNLOAD_SCP_${name}_PORT
JRELEASER_DOWNLOAD_SSH_${name}_PORT
JRELEASER_DOWNLOAD_SCP_PORT
JRELEASER_DOWNLOAD_SSH_PORT
JRELEASER_SCP_${name}_PORT
JRELEASER_SSH_${name}_PORT
JRELEASER_SCP_PORT
JRELEASER_SSH_PORT

username

jreleaser.download.scp.${name}.username
jreleaser.download.ssh.${name}.username
jreleaser.download.scp.username
jreleaser.download.ssh.username
jreleaser.scp.${name}.username
jreleaser.ssh.${name}.username
jreleaser.scp.username
jreleaser.ssh.username

JRELEASER_DOWNLOAD_SCP_${name}_USERNAME
JRELEASER_DOWNLOAD_SSH_${name}_USERNAME
JRELEASER_DOWNLOAD_SCP_USERNAME
JRELEASER_DOWNLOAD_SSH_USERNAME
JRELEASER_SCP_${name}_USERNAME
JRELEASER_SSH_${name}_USERNAME
JRELEASER_SCP_USERNAME
JRELEASER_SSH_USERNAME

password

jreleaser.download.scp.${name}.password
jreleaser.download.ssh.${name}.password
jreleaser.download.scp.password
jreleaser.download.ssh.password
jreleaser.scp.${name}.password
jreleaser.ssh.${name}.password
jreleaser.scp.password
jreleaser.ssh.password

JRELEASER_DOWNLOAD_SCP_${name}_PASSWORD
JRELEASER_DOWNLOAD_SSH_${name}_PASSWORD
JRELEASER_DOWNLOAD_SCP_PASSWORD
JRELEASER_DOWNLOAD_SSH_PASSWORD
JRELEASER_SCP_${name}_PASSWORD
JRELEASER_SSH_${name}_PASSWORD
JRELEASER_SCP_PASSWORD
JRELEASER_SSH_PASSWORD

publicKey

jreleaser.download.scp.${name}.public.key
jreleaser.download.ssh.${name}.public.key
jreleaser.download.scp.public.key
jreleaser.download.ssh.public.key
jreleaser.scp.${name}.public.key
jreleaser.ssh.${name}.public.key
jreleaser.scp.public.key
jreleaser.ssh.public.key

JRELEASER_DOWNLOAD_SCP_${name}_PUBLIC_KEY
JRELEASER_DOWNLOAD_SSH_${name}_PUBLIC_KEY
JRELEASER_DOWNLOAD_SCP_PUBLIC_KEY
JRELEASER_DOWNLOAD_SSH_PUBLIC_KEY
JRELEASER_SCP_${name}_PUBLIC_KEY
JRELEASER_SSH_${name}_PUBLIC_KEY
JRELEASER_SCP_PUBLIC_KEY
JRELEASER_SSH_PUBLIC_KEY

privateKey

jreleaser.download.scp.${name}.private.key
jreleaser.download.ssh.${name}.private.key
jreleaser.download.scp.private.key
jreleaser.download.ssh.private.key
jreleaser.scp.${name}.private.key
jreleaser.ssh.${name}.private.key
jreleaser.scp.private.key
jreleaser.ssh.private.key

JRELEASER_DOWNLOAD_SCP_${name}_PRIVATE_KEY
JRELEASER_DOWNLOAD_SSH_${name}_PRIVATE_KEY
JRELEASER_DOWNLOAD_SCP_PRIVATE_KEY
JRELEASER_DOWNLOAD_SSH_PRIVATE_KEY
JRELEASER_SCP_${name}_PRIVATE_KEY
JRELEASER_SSH_${name}_PRIVATE_KEY
JRELEASER_SCP_PRIVATE_KEY
JRELEASER_SSH_PRIVATE_KEY

passphrase

jreleaser.download.scp.${name}.passphrase
jreleaser.download.ssh.${name}.passphrase
jreleaser.download.scp.passphrase
jreleaser.download.ssh.passphrase
jreleaser.scp.${name}.passphrase
jreleaser.ssh.${name}.passphrase
jreleaser.scp.passphrase
jreleaser.ssh.passphrase

JRELEASER_DOWNLOAD_SCP_${name}_PASSPHRASE
JRELEASER_DOWNLOAD_SSH_${name}_PASSPHRASE
JRELEASER_DOWNLOAD_SCP_PASSPHRASE
JRELEASER_DOWNLOAD_SSH_PASSPHRASE
JRELEASER_SCP_${name}_PASSPHRASE
JRELEASER_SSH_${name}_PASSPHRASE
JRELEASER_SCP_PASSPHRASE
JRELEASER_SSH_PASSPHRASE

fingerprint

jreleaser.download.scp.${name}.fingerprint
jreleaser.download.ssh.${name}.fingerprint
jreleaser.download.scp.fingerprint
jreleaser.download.ssh.fingerprint
jreleaser.scp.${name}.fingerprint
jreleaser.ssh.${name}.fingerprint
jreleaser.scp.fingerprint
jreleaser.ssh.fingerprint

JRELEASER_DOWNLOAD_SCP_${name}_FINGERPRINT
JRELEASER_DOWNLOAD_SSH_${name}_FINGERPRINT
JRELEASER_DOWNLOAD_SCP_FINGERPRINT
JRELEASER_DOWNLOAD_SSH_FINGERPRINT
JRELEASER_SCP_${name}_FINGERPRINT
JRELEASER_SSH_${name}_FINGERPRINT
JRELEASER_SCP_FINGERPRINT
JRELEASER_SSH_FINGERPRINT

Substitute ${name} for the value of the named instance.

Space (' '), underscore (_), and dash (-) will be replaced by dot (.) to separate tokens in the System property. Space (' '), dash (-), and dot (.) will be replaced by underscore (_) to separate tokens in the environment variable, such that:

${name} System Property Environment Variable

foobar

foobar

FOOBAR

fooBar

foobar

FOOBAR

foo bar

foo.bar

FOO_BAR

foo-bar

foo.bar

FOO_BAR

foo_bar

foo.bar

FOO_BAR

foo.bar

foo.bar

FOO_BAR