aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: a2fb6d946b81e66c13809e8096145592c5466790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
plugins {
  id 'java'
  id 'application'
}

repositories {
  jcenter()
  mavenCentral()
  maven {
    name 'm2-dv8tion'
    url 'https://m2.dv8tion.net/releases'
  }
}

dependencies {
  compile 'net.dv8tion:JDA:4.2.1_253'
  compile 'com.sedmelluq:lavaplayer:1.3.77'
  runtime 'ch.qos.logback:logback-classic:1.2.3'
}

mainClassName = 'soundchan.Main'