forked from Dark0096/graphene
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (45 loc) · 1.28 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
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'java'
}
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
dependencies {
compile 'log4j:log4j:1.2.17'
compile 'io.netty:netty-all:4.0.24.Final'
compile 'commons-cli:commons-cli:1.2'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.datastax.cassandra:cassandra-driver-core:3.1.0'
compile 'com.google.guava:guava:18.0'
compile 'joda-time:joda-time:2.8.2'
compile 'org.elasticsearch:elasticsearch:1.7.6'
compile 'net.jpountz.lz4:lz4:1.2.0'
compile 'commons-lang:commons-lang:2.6'
compile 'com.rubiconproject.oss:jchronic:0.2.6'
compile 'com.fasterxml.jackson.core:jackson-databind:2.0.1'
compileOnly 'org.projectlombok:lombok:1.18.8'
annotationProcessor 'org.projectlombok:lombok:1.18.8'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
}
sourceCompatibility = '1.8'
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}