Gábor Török
07/25/2025, 5:02 PM2025-07-24T19:17:24.388-0700 [INFO] [org.gradle.api.internal.tasks.compile.incremental.SelectiveCompiler] Full recompilation is required because JdkClassWriter.class could not be analyzed for incremental compilation. See the debug log for more details. Analysis took 1.717 secs.
the problem is that this is our biggest project, and the full compilation can take up to more than a minute - which slows down iterating on problems A LOT.
• enabling the debug log does not seem to give me any more detailed information.
• JdkClassWriter.class
is only present in dependencies that are also present in other projects that do not have this problem..Gábor Török
07/25/2025, 5:03 PMbyte-buddy-1.17.5.jar
- which is a dependency of org.mockito:mockito-core:5.18.0
Vladimir Sitnikov
07/25/2025, 6:09 PMGábor Török
07/25/2025, 6:18 PM1.14.8
seems to solve the issue - but it does not feel like an ideal solution... 😕Vampire
07/28/2025, 8:54 AMVampire
07/28/2025, 8:57 AMVampire
07/28/2025, 8:59 AMGábor Török
07/28/2025, 4:43 PM8.11
and we have a java 17
toolchain.
so upgrading to at least 8.14
AND using java 24
toolchain would be required to fix the problem with the incremental compilation?Vampire
07/28/2025, 5:03 PMVampire
07/28/2025, 5:03 PMGábor Török
07/28/2025, 5:05 PM