online.colaba.ssh
Owner: Dmitry Koltovich
Ssh needed tasks for FTP deploy
https://github.com/steklopod/gradle-ssh-plugin
Sources: https://github.com/steklopod/gradle-docker-plugin
Version 1.2.20
1.2.20
Created 05 June 2020.
Ssh needed tasks for FTP deploy: all you need for easy deployment
Using the plugins DSL:
plugins {
id("online.colaba.ssh") version "1.2.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.online.colaba:gradle-ssh-plugin:1.2.20")
}
}
apply(plugin = "online.colaba.ssh")
Using the plugins DSL:
plugins {
id "online.colaba.ssh" version "1.2.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.online.colaba:gradle-ssh-plugin:1.2.20"
}
}
apply plugin: "online.colaba.ssh"