-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (25 loc) · 701 Bytes
/
Copy pathbuild.gradle
File metadata and controls
33 lines (25 loc) · 701 Bytes
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
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'bot.ESBotMain'
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext.logbackVersion = '1.1.8'
repositories {
jcenter()
maven{
url "http://repo.bastian-oppermann.de"
}
}
dependencies {
compile group: 'org.kohsuke', name: 'github-api', version: '1.85'
compile 'com.sedmelluq:lavaplayer:1.2.34'
compile 'net.dv8tion:JDA:3.0.0_165'
compile 'de.btobastian.sdcf4j:sdcf4j-core:1.0.4'
compile 'de.btobastian.sdcf4j:sdcf4j-jda3:1.0.4'
compile 'junit:junit:4.12'
runtime "ch.qos.logback:logback-classic:$logbackVersion"
runtime "ch.qos.logback:logback-core:$logbackVersion"
}
run{
standardInput = System.in
}