what is the best way to add git submodule sources ...
# gradle
i
what is the best way to add git submodule sources to project? I want to submodule use own
build.gradle(kts)
files, but if i add it as
project
dependency (
:path:to:submodule
) submodule use root project
build.gradle(kts)
files to build its sources and i must to synschronize build variables. It is kind of easy (but not normal) if i use own project as submodule, but what if i want to add any project and it has own gradle build architecture?
i
Looks like composite builds is what am i looking for