Search Gradle plugins

Version 1.9.0-RC3

1.9.0-RC3

Created 13 December 2022.

🚐 SCP: deploy your multi-module gradle project distribution by SSH (+ 🐳 Docker helpers tasks)

Add this plugin to your build using the plugins DSL:

plugins {
  id("online.colaba.ssh") version "1.9.0-RC3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("online.colaba:gradle-ssh-plugin:1.9.0-RC3")
      }
    }
    
    apply(plugin = "online.colaba.ssh")
  • Applying plugins to all subprojects .