Thomas Broyer
Thomas Broyer
Disclaimer: I've only ever used Phanpy on mobile, so can't really comment about the UX on desktop. On Android, it will soon be possible to use `CloseWatcher` to have elements...
The problem I have is that whether to force forking or not depends on whether the task uses a toolchain that is the same as the current JVM (and its...
> The idea with validation is that it could change the strategy and not auto correct value for the user, but user would be forced to set a fork option....
> > Is this a blocker for you? What if I update the plugin for Gradle 9 asap? I'd rather do that than add friction for users if possible. >...
You're hitting a Maven + Jetty Maven Plugin gotcha. The jetty_overlays error is due to the Jetty Maven Plugin not triggering the WAR file creation, Maven then giving the Jetty...
> My first attempts with error prone: on Windows 10, OpenJDK 17 17.0.5, maven wrapper 3.8.6, maven-compiler-plugin 3.10.1, 2290 source classes. The compiler mojo ends up with error without error...
The way I debug such things (it could be that Maven is "eating" the logs too) is to run Maven with debug logs (`-X`) and look for the compiler arguments...
The `--add-exports`/`--add-opens` should be `-J--add-exports`/`-J--add-opens` here: https://errorprone.info/docs/installation#command-line
That's #1250, caused by Lombok. Workaround: disable the UnusedVariable check.
Note that those errors also depend on your version of Lombok. For this specific case, also have a look at https://errorprone.info/bugpattern/OverrideThrowableToString and possibly make it so that Lombok doesn't generate/override...