Search Gradle plugins

com.bluepapa32.watch

a Gradle plugin to Run predefined tasks whenever watched file patterns are added, changed or deleted.

https://github.com/bluepapa32/gradle-watch-plugin

Version 0.1.5 (latest)

Created 26 February 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.bluepapa32.watch") version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.bluepapa32:gradle-watch-plugin:0.1.5")
  }
}

apply(plugin = "com.bluepapa32.watch")

Using the plugins DSL:

plugins {
  id "com.bluepapa32.watch" version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.bluepapa32:gradle-watch-plugin:0.1.5"
  }
}

apply plugin: "com.bluepapa32.watch"

Learn how to apply plugins to subprojects