ga.csys.tooling.gradle.pkssh-mavenrepo-gradle
Owner: Concurrent Systems
pkssh-mavenrepo-gradle
https://git.concurrent.systems/devshared/pkssh-mavenrepo-gradle
Sources: https://git.concurrent.systems/devshared/pkssh-mavenrepo-gradle
Using the plugins DSL:
plugins {
id("ga.csys.tooling.gradle.pkssh-mavenrepo-gradle") version "1.0.901"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.ga.csys.tooling.gradle:pkssh-mavenrepo-gradle:1.0.901")
}
}
apply(plugin = "ga.csys.tooling.gradle.pkssh-mavenrepo-gradle")
Using the plugins DSL:
plugins {
id "ga.csys.tooling.gradle.pkssh-mavenrepo-gradle" version "1.0.901"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.ga.csys.tooling.gradle:pkssh-mavenrepo-gradle:1.0.901"
}
}
apply plugin: "ga.csys.tooling.gradle.pkssh-mavenrepo-gradle"