Search Gradle plugins

Version 1.0.0 (latest)

Created 17 January 2020.

Template for people to start their own plugin adventure

Using the plugins DSL:

plugins {
  id("com.guidovezzoni.greeting") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.guidovezzoni.greeting:greeting-gradle-plugin-groovy:1.0.0")
  }
}

apply(plugin = "com.guidovezzoni.greeting")

Using the plugins DSL:

plugins {
  id "com.guidovezzoni.greeting" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.guidovezzoni.greeting:greeting-gradle-plugin-groovy:1.0.0"
  }
}

apply plugin: "com.guidovezzoni.greeting"

Learn how to apply plugins to subprojects