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.12.0 (latest)
Created 25 May 2025.
A plugin for remote command execution and file transfer via SSH
Add this plugin to your build using the plugins DSL:
plugins {
id("org.hidetake.ssh") version "2.12.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.hidetake.ssh:org.hidetake.ssh.gradle.plugin:2.12.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.hidetake.ssh") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hidetake.ssh:org.hidetake.ssh.gradle.plugin:2.12.0") } } apply(plugin = "org.hidetake.ssh")
- Applying plugins to all subprojects .