David M. Carr
David M. Carr
Thank you for the detailed issue report. I especially appreciate the example repository. I'll investigate the cause and get back to you.
As stated in the [gradle docs](https://docs.gradle.org/7.4.1/userguide/validation_problems.html#implicit_dependency), this occurs when one task depends on another without an implicit or explicit dependency. As a workaround until a fix is in place, you...
It appears that the kotlin plugin (that ktlint depends on) considers all Java source sets as kotlin source sets. The filtering is applied to all source sets. Still going to...
Unfortunately, I wasn't able to make any real progress on that front. There probably is *something* that the ktlint plugin could do to better handle generated source directories, but I...
Yeah, that might be more likely to get results.
I'm sorry to hear you're having issues. Intermittent problems are always the trickiest to diagnose. Assuming (based on your report) that it is indeed an intermittent behavior related to imported...
Good investigation. I think we’re making some progress. I **think** that depending on the runtime classpath should be sufficient, but I’ll verify that. You might be right that using the...
For the potential Gradle daemon URL caching issue, it might be a good idea to see if the Gradle build tool team has any more recent ideas, probably by submitting...
So, specifying system ClassLoader as the parent or not specifying it is the same thing... the system ClassLoader is the default delegation parent ClassLoader. I've removed the explicit specification of...
I set up a simple test project to try to determine if the configuration classpath dependency is sufficient. As far as I can tell, it appears to be. If I...