Test quickfixes for updating language/API version and coroutine support in Gradle projects

This commit is contained in:
Dmitry Jemerov
2017-03-06 10:14:37 +01:00
parent 5d461ec6df
commit 73a2c8c436
14 changed files with 267 additions and 3 deletions
@@ -0,0 +1,22 @@
group 'Again'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.0")
}
}
apply plugin: 'kotlin'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:1.1.0"
}
compileKotlin {
kotlinOptions.languageVersion = "1.0"
}
@@ -0,0 +1,22 @@
group 'Again'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.0")
}
}
apply plugin: 'kotlin'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:1.1.0"
}
compileKotlin {
kotlinOptions.languageVersion = "1.1"
}
@@ -0,0 +1 @@
val x get() = 1