gradle-watch-plugin
gradle-watch-plugin copied to clipboard
Gradle Watch Plugin
Gradle 2.5 is still working! ``` Java gradle watch --stacktrace :watch Starting:watch FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':watch'. > org.gradle.tooling.BuildLauncher.withArguments([Ljava/lang/String;)Lorg/gradle/tooling/BuildLauncher;...
hey, guy, the plugin will run a watchtarget task when i use VIM to edit some file, so add a ignores args, just to ignore these files. ``` watch {...
Is this plug-in still actively maintained? If not, what are the alternatives or is a fork more current? There haven't been any comments from the developer on open issues. And...
Currently this plugin doesn't work with Gradle 2.6. I think this change is all that's required to make it work again. A modified version of this branch is running on...
Hi, first of all, great plugin! Is there a any way to get the path of the changed file? I want to do incremental builds, invoking task for all files...
The task appears to be running twice: Test case simple class ``` java package com.atomi.examples.generics; public class BasicGenerics { public static void main(String[] args) { System.out.print("test"); } } ``` gradle.build...
Is it by design, that local properties have to have a value in your plugin? If I just do `gradle -PmyLocalProperty task` gradle itself says that `hasProperty("myLocalProperty")` is `true` …...
When I try to run the watch task, I receive the following error: ``` Could not find property 'sourceSets' on root project ``` I checked my code and everything seems...