build: Rename kotlin version properties

kotlin_version -> buildKotlinVersion
kotlinVersion -> kotlinCompilerVersion
This commit is contained in:
Ilya Matveev
2017-11-17 14:19:13 +07:00
committed by ilmat192
parent f8b6519864
commit 1c16fc1166
14 changed files with 21 additions and 20 deletions
@@ -61,7 +61,7 @@ task pluginMetadata {
dependencies {
compile project(':shared')
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-stdlib:$buildKotlinVersion"
compile gradleApi()
testCompile gradleTestKit()
@@ -103,7 +103,7 @@ publishing {
def stdlibDep = xml.asNode().appendNode("dependencies").appendNode("dependency")
stdlibDep.appendNode("groupId", "org.jetbrains.kotlin")
stdlibDep.appendNode("artifactId", "kotlin-stdlib")
stdlibDep.appendNode("version", "$kotlin_version")
stdlibDep.appendNode("version", "$buildKotlinVersion")
}
}
}