Arjan van Wieringen (avwie)
03/16/2024, 1:34 PMincludeBuild("plugin")
include("domain")
include("core")
This works splendid at least when I am not requiring the domain
module in plugin
.
So I decided to add include('domain')
also in plugin/settings.gradle.kts
and this doesn't complain. But I am unable to add it as a dependency in plugin/build.gradle.kts
. It is unable to find it: `
implementation(project(":domain"))
I tried every combination with colons btw....
My idea was that includeBuild
is in fact a completely separate 'build' and as such is able to add its own modules again.
In my Gradle hierarchy in the right bar in IntelliJ it does show that domain
is added both to core
and plugin
as a submodule.Arjan van Wieringen (avwie)
03/16/2024, 1:50 PMArjan van Wieringen (avwie)
03/16/2024, 2:02 PMArjan van Wieringen (avwie)
03/16/2024, 6:42 PM