-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (42 loc) · 1.44 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
group 'io.sebi'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.60'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven {
url = 'https://raw.githubusercontent.com/PavlikPolivka/maven-repository/master/'
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile "org.thymeleaf:thymeleaf:3.0.9.RELEASE"
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.github.kittinunf.fuel:fuel:1.12.0' //for JVM
compile 'com.github.kittinunf.fuel:fuel-rxjava:1.12.0' //for RxJava support
compile 'com.github.kittinunf.fuel:fuel-gson:1.12.0' //for Gson support
compile 'com.github.kittinunf.fuel:fuel-jackson:1.12.0' //for Jackson support
compile 'com.github.kittinunf.fuel:fuel-moshi:1.12.0' //for Moshi support
compile 'com.ppolivka.namegenerator:markov-chain-name-generator:1.1'
compile group: 'org.twitter4j', name: 'twitter4j-core', version: '4.0.6'
// https://mvnrepository.com/artifact/org.json/json
compile group: 'org.json', name: 'json', version: '20171018'
compile 'com.beust:klaxon:0.32'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}