Search Gradle plugins

Version 1.3.15

1.3.15

Created 16 October 2020.

Ssh needed tasks for FTP deploy: all you need for easy deployment

Add this plugin to your build using the plugins DSL:

plugins {
  id("online.colaba.ssh") version "1.3.15"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.online.colaba:gradle-ssh-plugin:1.3.15")
      }
    }
    
    apply(plugin = "online.colaba.ssh")
  • Applying plugins to all subprojects .