You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modern Gradle has an API called a "convention plugin", which is essentially a way to group configuration settings into a precompiled buildSrc directory for added build speed and declarative use. Essentially, it's a replacement for the allProjects and subProjects blocks from versions prior.
Since a lot of the buildscript is duplicated between templates (and those *Projects blocks are being deprecated in future versions), have you considered migrating them to a convention plugin so people can benefit from them being precompiled and stabilized?
(NOTE: With how finicky they can be, I totally understand if the answer is a resounding "no, they don't work for our purposes".)
The text was updated successfully, but these errors were encountered:
Modern Gradle has an API called a "convention plugin", which is essentially a way to group configuration settings into a precompiled
buildSrc
directory for added build speed and declarative use. Essentially, it's a replacement for theallProjects
andsubProjects
blocks from versions prior.Since a lot of the buildscript is duplicated between templates (and those
*Projects
blocks are being deprecated in future versions), have you considered migrating them to a convention plugin so people can benefit from them being precompiled and stabilized?(NOTE: With how finicky they can be, I totally understand if the answer is a resounding "no, they don't work for our purposes".)
The text was updated successfully, but these errors were encountered: