org.example.togloom-plugin
Owner: bbn
This is experimental plugin for playing around with Gradle plugin development 3.1.4
Sources: github.com/ubbn/org.example.mmcom-test-plugin
Version 4.0.0 (latest)
4.0.0
Created 12 July 2018.
This is experimental plugin for playing around with Gradle plugin development 4.0.0
Using the plugins DSL:
plugins {
id("org.example.togloom-plugin") version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.example.togloom-plugin:buildSrc:4.0.0")
}
}
apply(plugin = "org.example.togloom-plugin")
Using the plugins DSL:
plugins {
id "org.example.togloom-plugin" version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.example.togloom-plugin:buildSrc:4.0.0"
}
}
apply plugin: "org.example.togloom-plugin"