Search Gradle plugins

Version 0.1.4

Created 19 November 2019.

Ssh needed tasks for FTP deploy

Using the plugins DSL:

plugins {
  id("online.colaba.ssh") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.online.colaba:ssh:0.1.4")
  }
}

apply(plugin = "online.colaba.ssh")

Using the plugins DSL:

plugins {
  id "online.colaba.ssh" version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.online.colaba:ssh:0.1.4"
  }
}

apply plugin: "online.colaba.ssh"

Learn how to apply plugins to subprojects