io.github.aquinney0.ssh-cmd-proxy
所有者: Andrew Quinney
一个修复了一些技术缺陷并扩展了源依赖功能的 Gradle 插件。
https://github.com/zynga/ssh-cmd-proxy
源代码:https://github.com/zynga/ssh-cmd-proxy.git
版本 1.0 (最新版)
1.0
创建于 2024年4月12日。
一个修复了一些技术缺陷并扩展了源依赖功能的 Gradle 插件。
使用 plugins DSL
plugins {
id("io.github.aquinney0.ssh-cmd-proxy") version "1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.aquinney0:plugin:1.0")
}
}
apply(plugin = "io.github.aquinney0.ssh-cmd-proxy")
使用 plugins DSL
plugins {
id "io.github.aquinney0.ssh-cmd-proxy" version "1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.aquinney0:plugin:1.0"
}
}
apply plugin: "io.github.aquinney0.ssh-cmd-proxy"