Kevin O'Neal

Results 19 comments of Kevin O'Neal

The current version of jshint-rhino seems to have an issue with reporter. https://github.com/jshint/jshint/issues/2294

@paleozogt add mavenCentral to your build. ``` buildscript { repositories { jcenter() } dependencies { classpath "com.eriwen:gradle-js-plugin:1.12.1" } } repositories { mavenCentral() } apply plugin: "com.eriwen.gradle.js" ```

@eriwen Should Maven Central be included in the plugin or should a user be responsible for making that reference?

@eriwen I take that back. I don't think maven central should be part of the plugin. Carry on!

A work around is to include mavenCentral ``` buildscript { repositories { jcenter() } dependencies { classpath "com.eriwen:gradle-js-plugin:1.12.1" } } repositories { mavenCentral() } apply plugin: "com.eriwen.gradle.js" ```

What version of the plugin are you using?

The best option here may be to add a manually configurable switch to set the direction of the slash. Every time I look into this issue I feel like I...

Yeah, the should do the trick. The problem I keep running into is in some configuration on windows (I can't remember now) the slashes need to be *nix style. I...

Could you point me to an example project?

I'm not familiar at all with the `com.android.application` plugin. This `syntastic` plugin relies on sourceSets to have been created and then extracts the `classpath` from those (`main` and `test` `sourceSets`...