0

Made LogalBot open source.

This commit is contained in:
Logan Fick
2019-05-25 16:06:57 -04:00
commit b40dd8b9b0
49 changed files with 3633 additions and 0 deletions

31
build.gradle Normal file
View File

@@ -0,0 +1,31 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
}
}
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
repositories {
jcenter()
}
dependencies {
implementation 'org.slf4j:slf4j-simple:1.7.26'
implementation 'net.dv8tion:JDA:3.8.3_463'
implementation 'com.sedmelluq:lavaplayer:1.3.17'
implementation 'redis.clients:jedis:3.0.1'
implementation 'com.vdurmont:emoji-java:4.0.0'
}
jar {
manifest {
attributes 'Main-Class': 'dev.logal.logalbot.Main'
}
}