Skip to content

Instantly share code, notes, and snippets.

Created January 25, 2017 14:40
Show Gist options
  • Save anonymous/d0d3d3c6e42501c30d9f61855b9cc4b7 to your computer and use it in GitHub Desktop.
Save anonymous/d0d3d3c6e42501c30d9f61855b9cc4b7 to your computer and use it in GitHub Desktop.
buildscript {
ext.kotlin_version = '1.1.0-beta-18'
repositories {
mavenLocal()
jcenter()
maven {
url {
'https://dl.bintray.com/kotlin/kotlin-eap-1.1'
}
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: "kotlin"
apply plugin: "application"
mainClassName = "MainKt"
repositories {
mavenLocal()
jcenter()
maven {
url {
'https://dl.bintray.com/kotlin/kotlin-eap-1.1'
}
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.4-beta'
}
task wrapper(type: Wrapper) {
gradleVersion = "3.2.1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment