Version 0.4.3 (latest)
0.4.3
Created 25 April 2018.
Plugin for working with development environments
Using the plugins DSL:
plugins {
id("com.mtbvang.devtool") version "0.4.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.mtbvang:devtool:0.4.3")
}
}
apply(plugin = "com.mtbvang.devtool")
Using the plugins DSL:
plugins {
id "com.mtbvang.devtool" version "0.4.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.mtbvang:devtool:0.4.3"
}
}
apply plugin: "com.mtbvang.devtool"