Skip to content

Instantly share code, notes, and snippets.

@thealmikey
Created January 21, 2020 02:28
Show Gist options
  • Save thealmikey/e1984738f4e1be14cacec7195c120e1e to your computer and use it in GitHub Desktop.
Save thealmikey/e1984738f4e1be14cacec7195c120e1e to your computer and use it in GitHub Desktop.
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.41'
}
group 'thealmikey'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "com.tinder.statemachine:statemachine:0.2.0"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment