ru.shadam.grefresher
Owner: Timur Shakurov
Gradle plugin for blazing fast standalone application development cycle
https://github.com/saladinkzn/GRefresher
Using the plugins DSL:
plugins {
id("ru.shadam.grefresher") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ru.shadam.grefresher:grefresher:0.2")
}
}
apply(plugin = "ru.shadam.grefresher")
Using the plugins DSL:
plugins {
id "ru.shadam.grefresher" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ru.shadam.grefresher:grefresher:0.2"
}
}
apply plugin: "ru.shadam.grefresher"