Created
October 22, 2015 17:49
-
-
Save Jire/5b517fd767ad498bc18f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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