Search Gradle plugins

org.robin.example.greeting

A simple Gradle Plugin development example

whtacm.cc

Sources: https://github.com/whtacm/GradlePluginSrc

Version 1.0.2 (latest)

1.0.2

Created 28 February 2018.

A simple Gradle Plugin development example

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.robin.example.greeting") version "1.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.robin.example.greeting:greeting-plugin-src:1.0.2")
      }
    }
    
    apply(plugin = "org.robin.example.greeting")
  • Applying plugins to all subprojects .