I'm trying to apply a plugin from a shared gradle script.
in my shared gradle script I have the following code:
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
}
}
apply plugin: "org.jetbrains.kotlin.jvm"
In the other builds I try and do
apply from: "shared.gradle"
...
If I run any gradle task, I get the following error:
Plugin with id 'org.jetbrains.kotlin.jvm' not found
I've tried multiple ids instead of "org.jetbrains.kotlin.jvm": like "org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper" and "kotlin"... none works!
What am I doing wrong??
The classpath for kotlin Plugin is
org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper