Skip to content

Instantly share code, notes, and snippets.

@dmz9
Last active August 7, 2018 14:54
Show Gist options
  • Save dmz9/469f1b0d5be816a31028ad1e7af365b8 to your computer and use it in GitHub Desktop.
Save dmz9/469f1b0d5be816a31028ad1e7af365b8 to your computer and use it in GitHub Desktop.
plugins {
id 'org.jetbrains.kotlin.jvm'
}
apply plugin: 'java-library'
dependencies {
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
api "io.reactivex.rxjava2:rxjava:$rx_java_version"
}
sourceCompatibility = "1.6"
targetCompatibility = "1.6"
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.6"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.6"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment