Skip to content

Instantly share code, notes, and snippets.

@ViTORossonero
Created January 28, 2017 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ViTORossonero/88017ac2963584c17696a6f4333cd303 to your computer and use it in GitHub Desktop.
Save ViTORossonero/88017ac2963584c17696a6f4333cd303 to your computer and use it in GitHub Desktop.
Kotlin 1.1.0-beta-22 gradle
group 'rxjava'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.0-beta-22'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile 'io.reactivex:rxjava:1.2.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment