com.medly.inception
Owner: Kunal Dabir
A Gradle Plugin to Build Gradle Plugins
https://github.com/medly/inception
Sources: https://github.com/medly/inception
Version 0.0.2 (latest)
0.0.2
Created 09 June 2021.
A Gradle Plugin to Build Gradle Plugins
Using the plugins DSL:
plugins {
id("com.medly.inception") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.medly:inception:0.0.2")
}
}
apply(plugin = "com.medly.inception")
Using the plugins DSL:
plugins {
id "com.medly.inception" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.medly:inception:0.0.2"
}
}
apply plugin: "com.medly.inception"