blob: d6fccbf8b39ec8cb1b69fe0bfe38e6aba1ddc56f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
apply plugin: 'application'
mainClassName = "de.romjaki.selfbot.Main"
group = 'discordjda'
version = '1.0-SNAPSHOT'
description = """"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
run {
systemProperty "config.file", project.getProperty("config.file")
}
repositories {
jcenter()
}
dependencies {
compile group: 'org.apache.commons', name: 'commons-math3', version:'3.4'
compile group: 'net.dv8tion', name: 'JDA', version:'3.3.0_272'
}
|