Peter
06/20/2024, 11:39 AM:build-logic) still better alternative to :buildSrc ?Vampire
06/20/2024, 11:41 AMbuildSrc unless I have a use-case that only works with buildSrc like monkey-patching some 3rd party plugin class.Peter
06/20/2024, 11:47 AMbuildSrc seems to add dependencies to classpath and often makes submodules more annoying to configure.Vampire
06/20/2024, 12:47 PMbuildSrc puts everything in a parent classloader of root build script and thus all build scripts, so the dependencies coming from buildSrc win over any dependencies plugins added by build scripts add to the classpath without any conflict resolution. This can be good in some situations or catastrophic in others. Plugins coming from an included build take part in normal build script classpath conflict resolution.