-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
70 lines (59 loc) · 1.91 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.3'
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M4'
}
}
apply plugin: 'org.junit.platform.gradle.plugin'
apply plugin: 'kotlin'
repositories {
mavenCentral()
jcenter()
}
jar {
manifest {
attributes 'Main-Class': 'com.tritandb.engine.server.StartServer'
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
exclude('META-INF/*.SF')
exclude('META-INF/*.DSA')
exclude('META-INF/*.RSA')
}
//task execute(type:JavaExec) {
// if(project.hasProperty('myargs')){
// args(myargs.split(','))
// }
// main = mainClass
// classpath = sourceSets.main.runtimeClasspath
//}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect"
compile "com.lmax:disruptor:3.3.6"
compile 'com.google.protobuf:protobuf-java:3.3.0'
compile 'com.natpryce:konfig:1.6.1.0'
compile 'org.zeromq:jeromq:0.4.0'
compile 'org.apache.jena:jena-arq:3.3.0'
compile 'org.apache.jena:jena-core:3.3.0'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.16'
compile 'com.github.jrachiele:timeseries:0.3'
compile 'io.github.microutils:kotlin-logging:1.4'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
compile 'com.google.code.gson:gson:2.8.1'
testCompile 'com.nhaarman:mockito-kotlin:1.4.0'
testCompile "org.jetbrains.kotlin:kotlin-test"
testCompile 'org.jetbrains.spek:spek-api:1.1.2'
testCompile 'org.junit.jupiter:junit-jupiter-api:5.0.0-M4'
testRuntime 'org.jetbrains.spek:spek-junit-platform-engine:1.1.2'
}
kotlin {
experimental {
coroutines "enable"
}
}