#set( $command = ${project.commands.scp})
Copies the nominated archive (filename with no extension) to a remote location.
The archive must be one of those generated using the archive feature. If the
archive file has not been generated then this delegate will fail.

   ${command.archiveOption}:  the name of the classes archive that is to be copied, without
             the extension created with the ${project.commands.archive.delegate.name} command.

   ${command.dirOption}:      the remote address where the artifact is to copied to.
		
   ${command.keyfileOption}:  the path to the private key for scp key-based authentication. If
             not specified then the default key location is used if it exists.
		
   ${command.passwordOption}: the password for scp transport if specified.

   ${command.phraseOption}:   the passphrase for scp key-based authentication. Can be left out
             if there is no passphrase for the given key.

Examples:

   ${layout.scriptName} "${command.delegate.name} -${command.archiveOption} acme-1.0 -${command.dirOption} someuser@somemachine:somedir -${command.keyfileOption} ~/.ssh/myprivatekey -${command.phraseOption} secretphrase123"

   ${layout.scriptName} "${command.delegate.name} -${command.archiveOption} acme-1.0 -${command.dirOption} someuser@somemachine:somedir -${command.passwordOption} secretpass123"
