me.myframework.gradle-plugin
Owner: Donat Csikos
No description available.
http://github.com/donat/gradle-plugin
Version 0.1.5 (latest)
0.1.5
Created 18 March 2021.
Gradle Plugin to demonstrate how to perform plugin migration from Bintray to Plugin Portal
Using the plugins DSL:
plugins {
id("me.myframework.gradle-plugin") version "0.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.myframework:gradle-plugin:0.1.5")
}
}
apply(plugin = "me.myframework.gradle-plugin")
Using the plugins DSL:
plugins {
id "me.myframework.gradle-plugin" version "0.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.myframework:gradle-plugin:0.1.5"
}
}
apply plugin: "me.myframework.gradle-plugin"