Files
kotlin-fork/idea/testData/inspections/gradleWrongPluginVersion/wrongPluginVersionWithSomeVariableInDef.gradle
T

14 lines
212 B
Groovy
Vendored

buildscript {
def defVar = '0.0.1'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$defVar"
}
}
apply plugin: 'java'
apply plugin: 'kotlin'