de.leonmoll.gradle.gradle-tab-fusion
Owner: Leon Moll
The fusion between a Gradle Plugin and command-line tab-completion
https://github.com/meonlol/gradle-tab-fusion
Sources: https://github.com/meonlol/gradle-tab-fusion
Version 0.2.0 (latest)
0.2.0
Created 09 September 2017.
The fusion between a Gradle Plugin and command-line tab-completion
Using the plugins DSL:
plugins {
id("de.leonmoll.gradle.gradle-tab-fusion") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.leonmoll.gradle:gradle-tab-fusion:0.2.0")
}
}
apply(plugin = "de.leonmoll.gradle.gradle-tab-fusion")
Using the plugins DSL:
plugins {
id "de.leonmoll.gradle.gradle-tab-fusion" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.leonmoll.gradle:gradle-tab-fusion:0.2.0"
}
}
apply plugin: "de.leonmoll.gradle.gradle-tab-fusion"