diff options
author | Brandon <bwaggone@umich.edu> | 2018-04-07 15:55:32 -0400 |
---|---|---|
committer | Brandon <bwaggone@umich.edu> | 2018-04-07 15:55:32 -0400 |
commit | 3799c7828ad8ef2968f39e4044db36885aec1ab4 (patch) | |
tree | a7da8fa945a22f62fc59ef983abced1ce082bb0c /build.gradle | |
download | SoundChan-3799c7828ad8ef2968f39e4044db36885aec1ab4.tar.gz SoundChan-3799c7828ad8ef2968f39e4044db36885aec1ab4.tar.bz2 SoundChan-3799c7828ad8ef2968f39e4044db36885aec1ab4.zip |
Initial commit
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..cbaf6bd --- /dev/null +++ b/build.gradle @@ -0,0 +1,16 @@ +plugins { + id 'java' + id 'application' +} + +repositories { + jcenter() +} + +dependencies { + compile 'net.dv8tion:JDA:3.5.1_339' + compile 'com.sedmelluq:lavaplayer:1.2.53' + runtime 'ch.qos.logback:logback-classic:1.2.3' +} + +mainClassName = 'soundbot.Main' |