Search Gradle plugins

org.hidetake.ssh

Gradle SSH Plugin is a Gradle plugin which provides remote command execution and file transfer features.

https://github.com/int128/gradle-ssh-plugin

Using the plugins DSL:

plugins {
  id("org.hidetake.ssh") version "1.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.hidetake:gradle-ssh-plugin:1.1.4")
  }
}

apply(plugin = "org.hidetake.ssh")

Using the plugins DSL:

plugins {
  id "org.hidetake.ssh" version "1.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.hidetake:gradle-ssh-plugin:1.1.4"
  }
}

apply plugin: "org.hidetake.ssh"

Learn how to apply plugins to subprojects