Charlie Tapping
04/26/2023, 6:31 PMVampire
04/26/2023, 8:42 PMCharlie Tapping
04/27/2023, 8:34 AMgradle help
that number will sit at 25, if you simply uncomment the versions convention plugin in the root project it will fall to 15. You can apply the same config and plugin from the convention and it will remain at 15. Which leads me to believe this is somehow related to either pre compiled script plugins or included buildsVampire
04/27/2023, 9:17 AMCharlie Tapping
04/27/2023, 9:55 AMid("versions-conventions")
in the root project. Run gradle --scan
help you’ll see it drop to 15. Then take the configuration from the convention itself (found in `gradle/plugins/versions-conventions/src/main/kotlin/versions-conventions.gradle.kts`and apply it directly to the root project. Again run a scan on help, the number will remain at 15.Vampire
04/27/2023, 10:37 AM<http://systemProp.org|systemProp.org>.gradle.internal.tasks.stats=traces.txt
in your Gradle properties. Then you get a summary of the created tasks and stacktraces where lazy tasks were realized in the given file and can investigate differences or provide the information in some bug report.Charlie Tapping
04/27/2023, 12:52 PM