Initial commit

This commit is contained in:
PocketMars
2020-06-12 18:19:23 -05:00
commit 21cecccc2e
17 changed files with 1077 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'com.polymars'
version '1.0'
mainClassName = "Bot"
sourceCompatibility = 1.8;
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'net.dv8tion:JDA:4.1.1_162'
}