org.ricardo.example.plugin
Owner: Pieper
A minimal example on how to make plugins for Gradle
https://github.com/ricardopieper/gradle-example-plugin
Sources: https://github.com/ricardopieper/gradle-example-plugin
Version 1.0 (latest)
1.0
Created 26 April 2018.
A minimal example on how to make plugins for Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("org.ricardo.example.plugin") version "1.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.org.ricardo.example.plugin:gradle-plugin:1.0") } } apply(plugin = "org.ricardo.example.plugin")
- Applying plugins to all subprojects .