搜索 Gradle 插件

org.hidetake.ssh

所有者: 伊东英作

Gradle SSH 插件是一个 Gradle 插件,它提供了远程命令执行和文件传输功能。

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

版本 2.11.2 (最新)

2.11.2

创建于 2023 年 3 月 1 日。

用于通过 SSH 进行远程命令执行和文件传输的插件

使用 插件 DSL

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

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.hidetake:core:2.11.2")
  }
}

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

使用 插件 DSL

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

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.hidetake:core:2.11.2"
  }
}

apply plugin: "org.hidetake.ssh"

了解如何将插件应用于子项目