I think a general rule of thumb I have is: - decl...
# gradle
m
I think a general rule of thumb I have is: - declare all plugins in top level build script using
plugins {}
block - use
apply false
at the top level for each plugin that is only used in subpojcts - try to avoid
subprojects
at first, because it requires you to understand a little bit of how the day generation works - in subprojects, use the
plugins {}
block without specifying the version (since it was specified in the top level) I totally understand. kotlin-dsl is still pretty 1.0, and the documentation isn't entirely there yet, and there have been some breaking changes
1
👍 2