Skip to content

Instantly share code, notes, and snippets.

@thealmikey
Last active April 5, 2019 17:16
Show Gist options
  • Save thealmikey/f2c884d86ea3822891f65318a4a1b9ea to your computer and use it in GitHub Desktop.
Save thealmikey/f2c884d86ea3822891f65318a4a1b9ea to your computer and use it in GitHub Desktop.
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
}
group 'almikey'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.zeromq:jeromq:0.5.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