JamesX
08/30/2025, 1:45 AMbuildSrc
project and an "external" build which creates some gradle plugins. It used to be that I could enable Composite Build in the intellij UI, and then it would resolve my plugin classes back to source when navigating from buildscripts (very nice!) ...but, since upgrading to gradle 8, it seems that my buildSrc
is always listed as a composite, which prevents intellij from showing the option to enable composites (if I enable composites in settings.gradle, the gui option is normally removed, but it also doesn't work properly in IDE).
So, does anyone have any ideas or suggests? gpt suggested removing buildSrc/settings.gradle
but that didn't help, and manually printing the included builds shows nothing.
I'll attach the xml I pulled from .idea/gradle.xml
in a thread, in case it helps.JamesX
08/30/2025, 1:45 AM<compositeConfiguration>
<compositeBuild compositeDefinitionSource="SCRIPT">
<builds>
<build path="$PROJECT_DIR$/buildSrc" name="buildSrc">
<projects>
<project path="$PROJECT_DIR$/buildSrc" />
</projects>
</build>
</builds>
</compositeBuild>
</compositeConfiguration>
Vampire
08/30/2025, 10:30 AMbuildSrc
anymore, but a proper composite build for build logic.
But anyway, if you can only define one composite build in IDE and not multiple, I'd say that is an IDE bug.JamesX
08/30/2025, 3:08 PMVampire
08/30/2025, 5:13 PMTheGoesen
09/01/2025, 2:24 PMVampire
09/01/2025, 2:42 PM