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 has been archived by the owner on Aug 19, 2020. It is now read-only.
When a Kotlin build script is applied from a main Groovy build script, its compilation classpath won't include the classpath of the main script thus the following will fail to compile even when the main buildscript classpath includes kotlin-gradle-plugin:
This is intentional. A script plugin cannot include the classpath of the project it is being applied to. Script plugins must be self-contained, as they can be applied to any number of projects.
In fact, the opposite relationship will be true in the future: The project should see what the script plugin provides. This is part of the stable plugin DSL project.
When a Kotlin build script is applied from a main Groovy build script, its compilation classpath won't include the classpath of the main script thus the following will fail to compile even when the main buildscript classpath includes
kotlin-gradle-plugin
:The text was updated successfully, but these errors were encountered: