At this location:
getProject().getConfigurations().stream().filter(Configuration::isCanBeResolved).flatMap(c -> c.getFiles().stream()).forEach(typeSolverClasspath::add);
This pulls in files from every configuration: even irrelevant ones. Depending on the Gradle setup, this can end up referencing files that are not yet built at the time spotless runs.
I'm using Spotless Gradle plugin 8.8.0.
At this location:
This pulls in files from every configuration: even irrelevant ones. Depending on the Gradle setup, this can end up referencing files that are not yet built at the time spotless runs.
I'm using Spotless Gradle plugin 8.8.0.