-
Notifications
You must be signed in to change notification settings - Fork 105
/
build.gradle
43 lines (34 loc) · 1.47 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
plugins {
id 'java'
id 'idea'
id 'application'
id 'com.github.johnrengelman.shadow' version '1.2.4'
id 'org.jetbrains.kotlin.jvm' version '1.1.1'
}
mainClassName = 'xyz.gnarbot.gnar.MainBot'
version = '1.0'
sourceCompatibility = 1.8
task wrapper(type: Wrapper) {
gradleVersion = '3.5'
}
repositories {
jcenter()
}
dependencies {
compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.1.1'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: '1.1.1'
compile group: 'net.dv8tion', name: 'JDA_K', version: '3.0.0_23'
compile group: 'xyz.avarel', name: 'AJE', version: '2.1.1'
compile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.4.9'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'com.google.guava', name: 'guava', version: '21.0'
compile group: 'com.sedmelluq', name: 'lavaplayer', version: '1.2.35'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
compile group: 'ca.pjer', name: 'chatter-bot-api', version: '2.0.1'
compile group: 'org.jsoup', name: 'jsoup', version: '1.10.2'
compile group: 'org.json', name: 'json', version: '20160810'
testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: '1.1.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileJava.options.encoding = 'UTF-8'