Search Gradle plugins

Version 0.9.19-SNAPSHOT (latest)

0.9.19-SNAPSHOT

Created 30 April 2019.

A Gradle plugin for working with remote SSH servers

Using the plugins DSL:

plugins {
  id("com.aestasit.sshoogr") version "0.9.19-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.aestasit.infrastructure.sshoogr:sshoogr-gradle:0.9.19-SNAPSHOT")
  }
}

apply(plugin = "com.aestasit.sshoogr")

Using the plugins DSL:

plugins {
  id "com.aestasit.sshoogr" version "0.9.19-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.aestasit.infrastructure.sshoogr:sshoogr-gradle:0.9.19-SNAPSHOT"
  }
}

apply plugin: "com.aestasit.sshoogr"

Learn how to apply plugins to subprojects