io.github.aquinney0.ssh-cmd-proxy
Owner: Andrew Quinney
A Gradle plugin that fixes some technical deficiencies and expands the capabilities of source dependencies.
https://github.com/zynga/ssh-cmd-proxy
Sources: https://github.com/zynga/ssh-cmd-proxy.git
Version 1.0 (latest)
1.0
Created 12 April 2024.
A Gradle plugin that fixes some technical deficiencies and expands the capabilities of source dependencies.
Using the plugins DSL:
plugins {
id("io.github.aquinney0.ssh-cmd-proxy") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.aquinney0:plugin:1.0")
}
}
apply(plugin = "io.github.aquinney0.ssh-cmd-proxy")
Using the plugins DSL:
plugins {
id "io.github.aquinney0.ssh-cmd-proxy" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.aquinney0:plugin:1.0"
}
}
apply plugin: "io.github.aquinney0.ssh-cmd-proxy"