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.8.1005
1.8.1005
Created 22 December 2021.
SSH task for easy deploy to remote server (+Docker helpers tasks)
Using the plugins DSL:
plugins {
id("online.colaba.ssh") version "1.8.1005"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.online.colaba:gradle-ssh-plugin:1.8.1005")
}
}
apply(plugin = "online.colaba.ssh")
Using the plugins DSL:
plugins {
id "online.colaba.ssh" version "1.8.1005"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.online.colaba:gradle-ssh-plugin:1.8.1005"
}
}
apply plugin: "online.colaba.ssh"