Search Gradle plugins

Version 0.1.0 (latest)

Created 28 January 2020.

Deploy Plugin

Using the plugins DSL:

plugins {
  id("com.vanstivo.plugin.deploy") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.vanstivo.plugin:deploy:0.1.0")
  }
}

apply(plugin = "com.vanstivo.plugin.deploy")

Using the plugins DSL:

plugins {
  id "com.vanstivo.plugin.deploy" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.vanstivo.plugin:deploy:0.1.0"
  }
}

apply plugin: "com.vanstivo.plugin.deploy"

Learn how to apply plugins to subprojects