-
Notifications
You must be signed in to change notification settings - Fork 53
/
build.gradle
71 lines (63 loc) · 2.87 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
71
import org.apache.tools.ant.filters.ReplaceTokens
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'maven'
apply plugin: 'idea'
apply plugin: 'com.github.johnrengelman.shadow'
mainClassName = 'emily.main.Launcher'
group = 'com.github.Kaaz'
version = '1.9.17'
description = "Emily discord bot"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
processResources {
filesMatching('**project.properties') {
filter ReplaceTokens, tokens: [
'version': version
]
}
}
repositories {
maven { url "https://jitpack.io" }
maven { url "https://dl.bintray.com/bots4j/maven-repo" }
maven { url "https://jcenter.bintray.com" }
maven { url "https://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
compile group: 'org.json', name: 'json', version: '20170516'
compile group: 'com.github.rithms', name: 'riot-api-java', version: '4.0.1'
compile group: 'org.jsoup', name: 'jsoup', version: '1.10.3'
compile group: 'org.graylog2', name: 'gelfclient', version: '1.4.0'
compile group: 'org.knowm.xchart', name: 'xchart', version: '3.2.1'
compile group: 'com.google.apis', name: 'google-api-services-youtube', version: 'v3-rev192-1.23.0'
compile group: 'com.kcthota', name: 'emoji4j', version: '5.0'
compile group: 'net.dv8tion', name: 'JDA', version: '3.8.1_457'
compile group: 'com.sedmelluq', name: 'lavaplayer', version: '1.3.49'
compile group: 'org.reflections', name: 'reflections', version: '0.9.10'
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.40'
compile group: 'com.github.Kaaz', name: 'trello4j', version: 'master-SNAPSHOT'
compile group: 'com.github.Kaaz', name: 'ConfigurationBuilder', version: '0c4957579e'
compile group: 'com.github.Kaaz', name: 'lib-poe', version: '1.1'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.5'
compile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.4.9'
compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.3'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.6'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.8.2'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.8.2'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.3'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.3'
compile group: 'org.bots4j', name: 'wit-ai-client', version: '0.01'
}