0

Initial commit of Redstoner-Bot.

This commit is contained in:
Logan Fick
2019-03-10 18:28:57 -04:00
commit 3c88f2e9f2
25 changed files with 1350 additions and 0 deletions

32
build.gradle Normal file
View File

@@ -0,0 +1,32 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.2'
}
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
repositories {
jcenter()
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation 'net.dv8tion:JDA:3.8.3_460'
implementation 'com.github.LogalDeveloper:LogalBot:f4f13ddc45'
implementation 'mysql:mysql-connector-java:5.1.37'
}
jar {
manifest {
attributes "Main-Class": "com.redstoner.discordbot.Main"
}
}