summaryrefslogtreecommitdiff
path: root/build.gradle
blob: eed83bfd432fcd2057c8dda070aebeb603a8376e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
group 'de.romjaki'
version '1.0-SNAPSHOT'

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
    jcenter()
}

dependencies {
    compile 'net.dv8tion:JDA:+'
    compile 'com.google.code.gson:gson:2.8.2'
    testCompile group: 'junit', name: 'junit', version: '4.12'
}