Ned Twigg

Results 639 comments of Ned Twigg

Happy to merge a PR for this, but currently nobody is working on it. You can use a custom step do this, there's an example of how to do this...

If you don't care about using the IntelliJ formatter specifically, but rather just the IntelliJ IDE to autoformat in a way that agrees with Spotless, another path forward would be...

Fantastic, thanks so much @ragurney! Looks like a great plugin, I will submit a PR momentarily to better advertise your plugin to Spotless users. If your goal is to use...

Seems like a bug in eclipse `4.20.0`, glad that `eclipse('4.19.0')` fixes it for you. Hopefully this gets fixed in `4.22.0`, but I'm not sure when we'll add support for that...

> Do you know if the Eclipse developers are already aware of this issue? Or should we open an issue in their bug tracking system? I don't know if they...

It's nice to have this tracking issue for `4.22`. I expect it'll be a few weeks before this gets in due to delays caused by me and the build system...

Happy to merge a PR that fixes this.

One of Gradle's best features is the [build cache](https://docs.gradle.org/current/userguide/build_cache.html) (`--build-cache` or `org.gradle.caching=true`). It snapshots the input properties of a task and memoizes the outputs. Simple and effective. Best of all,...

## Configuration cache is faster and easier without serialization Here is an example: ```java // user-facing org.gradle.api.LiveCache { get/set } class MyServerConnection { ... } // implements .equals and .hashCode,...