Simon Herter

Results 15 comments of Simon Herter

Well, then the evaluation of the `buildDir` variable must be delayed (put it in the [afterEvaluate section](https://github.com/melix/jmh-gradle-plugin/blob/master/src/main/groovy/me/champeau/gradle/JMHPlugin.groovy#L181))

There are arguments against using the project's java sourceSets as default input (see https://github.com/sherter/google-java-format-gradle-plugin/issues/3 and https://github.com/sherter/google-java-format-gradle-plugin/issues/11). I'm not sure if this is still an issue for Android builds. Adding default...

Hi Zac, that's a fair question. The plugin was designed with the goal to be "done" at some point, intentionally having a small (but useful) scope. While I was trying...

I don't have access to a windows 7 machine right now, but I'll increase the priority of issue #10 on my TODO list (I couldn't reproduce the problem on Linux,...

I re-tried on windows 7, but couldn't reproduce the problem: ```cmd C:\Users\admin\Desktop>java -version java version "1.7.0_80" Java(TM) SE Runtime Environment (build 1.7.0_80-b15) Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed...

@mcs6502 Thanks for the detailed analysis (and sorry for the delay). I've never used dependency substitution before. Do you have an example project at hand?

Hi, sorry for not getting back to you earlier. First of all, the `fileStates.txt` file is by no means an API. It is used as a cache to speed up...

I see. Generating reports for `VerifyGoogleJavaFormat` tasks certainly makes sense. However, this feature would be orthogonal to the fileStates cache. The cache isn't task specific. It's shared between all verify/format...

In my conception a report belongs to a verification task and therefore I would say that `VerifyGoogleJavaFormat` should implement [`Reporting`](https://docs.gradle.org/current/dsl/org.gradle.api.reporting.Reporting.html). I haven't really used the JaCoCo plugin though and don't...