blob: 7b294c3dc0ed955494da1e12dc815d3add9b3401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
apply plugin: 'application'
mainClassName = "de.romjaki.selfbot.Main"
group = 'discordjda'
version = '1.0-SNAPSHOT'
description = """"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
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'
}
|