We have an internal plugin that's used in `setting...
# intellij
s
We have an internal plugin that's used in
settings.gradle.kts
files that automates a lot of conventions for us. One being it includes modules dynamically when they exist. This builds fine and Intellij is fine with finding modules that were included like this, but when the plugin dynamically includes
includeBuild("build-logic")
inside of the too
settings.gradle.kts
pluginManagement
block, the build succeeds, but Intellij is unable to detect
build-logic
as a valid module. Is there anyway to resolve this?
t
Create an issue for this in YouTrack, the included builds don't cover all cases in IDEA. Try to create a small repro without a dynamic plugin.
👍 1