-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
33 lines (29 loc) · 954 Bytes
/
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
plugins {
id 'application'
}
repositories {
maven { url 'https://m2.dv8tion.net/releases' }
maven { url 'https://jcenter.bintray.com' }
maven { url 'https://jitpack.io' }
}
dependencies {
implementation('net.dv8tion:JDA:4.2.1_259') {
exclude module: 'opus-java'
}
implementation 'at.mukprojects:giphy4j:1.0.1'
implementation 'net.sf.jtidy:jtidy:r938'
implementation 'org.json:json:20160810'
implementation 'com.rometools:rome:1.7.0'
implementation 'org.apache.commons:commons-lang3:3.5'
implementation 'org.apache.commons:commons-collections4:4.1'
implementation 'commons-codec:commons-codec:1.10'
implementation 'com.mashape.unirest:unirest-java:1.4.9'
implementation 'org.jsoup:jsoup:1.10.1'
implementation 'com.google.guava:guava:30.0-jre'
}
application {
mainClass = 'fr.minuskube.bot.discord.DiscordBot'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}