Anyone knows why `plugins { kotlin("jvm") }` does ...
# gradle
m
Anyone knows why
plugins { kotlin("jvm") }
does not apply configurations like
api
in subproject?
t
because plugin is only applied to the current project 🙂 You need to explicitly apply plugin in subprojects build scripts as well
🙏 1