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
{{ message }}
This repository was archived by the owner on Aug 19, 2020. It is now read-only.
With the recent improvements to the plugins DSL it is now possible to use the plugins block in child projects to apply plugins already included on the classpath by the parent. For instance:
However, plugin requests in child projects must not include a version number which disallows the kotlin("jvm") plugin dependency spec above as it currently always includes a version number.
The sample above would currently fail with:
Plugin request for plugin already on the classpath must not include a version
In order to enable that use-case kotlin("jvm") will no longer imply version embeddedKotlinVersion.
Unfortunately this is a breaking change as the version will now have to be specified at least once at the top most project.