Skip to content

Instantly share code, notes, and snippets.

@Jire
Created October 22, 2015 17:49
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 Jire/5b517fd767ad498bc18f to your computer and use it in GitHub Desktop.
Save Jire/5b517fd767ad498bc18f to your computer and use it in GitHub Desktop.
group 'vero'
version '0.1'
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "io.netty:netty-all:5.0.0.Alpha2"
compile "co.paralleluniverse:quasar-core:0.7.3"
compile "co.paralleluniverse:quasar-actors:0.7.3"
compile "co.paralleluniverse:quasar-kotlin:0.7.3"
compile "com.lmax:disruptor:3.3.2"
}
buildscript {
ext.kotlin_version = '0.14.449'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment