2015-11-03 12:37:19 +00:00
|
|
|
group 'com.r3cev.experimental'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext.kotlin_version = '1.0.0-beta-1103'
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-11-06 12:56:04 +00:00
|
|
|
testCompile 'junit:junit:4.11'
|
2015-11-03 12:37:19 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2015-11-09 19:27:53 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
2015-11-03 12:37:19 +00:00
|
|
|
compile "com.google.guava:guava:18.0"
|
|
|
|
compile "org.funktionale:funktionale:0.6_1.0.0-beta"
|
2015-11-13 16:22:26 +00:00
|
|
|
compile "com.esotericsoftware:kryo:3.0.3"
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src'
|
2015-11-06 12:56:04 +00:00
|
|
|
test.java.srcDirs += 'tests'
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|