Search Gradle plugins

ru.shadam.grefresher

Gradle plugin for blazing fast standalone application development cycle

https://github.com/saladinkzn/GRefresher

Version 0.1

Created 24 September 2014.

No version description available.

Using the plugins DSL:

plugins {
  id("ru.shadam.grefresher") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ru.shadam.grefresher:grefresher:0.1")
  }
}

apply(plugin = "ru.shadam.grefresher")

Using the plugins DSL:

plugins {
  id "ru.shadam.grefresher" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ru.shadam.grefresher:grefresher:0.1"
  }
}

apply plugin: "ru.shadam.grefresher"

Learn how to apply plugins to subprojects