Test common Gradle property for kotlin version

This commit is contained in:
Nikita Skvortsov
2014-03-17 15:26:25 +04:00
parent 0045edbebe
commit 0b6947b722
@@ -1,4 +1,5 @@
buildscript {
ext.kotlin_version = "0.1-SNAPSHOT"
repositories {
mavenCentral()
maven {
@@ -6,7 +7,7 @@ buildscript {
}
}
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin-core:0.1-SNAPSHOT'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin-core:$kotlin_version"
}
}
@@ -30,7 +31,7 @@ dependencies {
compile 'com.google.guava:guava:12.0'
deployCompile 'com.google.guava:guava:12.0'
testCompile 'org.testng:testng:6.8'
testRuntime 'org.jetbrains.kotlin:kotlin-stdlib:0.1-SNAPSHOT'
testRuntime "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
test {