org.hidetake.ssh
Owner: Hidetake Iwata
Gradle SSH Plugin is a Gradle plugin which provides remote command execution and file transfer features.
https://github.com/int128/gradle-ssh-plugin
Version 2.11.2 (latest)
2.11.2
Created 01 March 2023.
A plugin for remote command execution and file transfer via SSH
Using the plugins DSL:
plugins {
id("org.hidetake.ssh") version "2.11.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.hidetake:core:2.11.2")
}
}
apply(plugin = "org.hidetake.ssh")
Using the plugins DSL:
plugins {
id "org.hidetake.ssh" version "2.11.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.hidetake:core:2.11.2"
}
}
apply plugin: "org.hidetake.ssh"