summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle23
1 files changed, 23 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..d6fccbf
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,23 @@
+apply plugin: 'application'
+
+mainClassName = "de.romjaki.selfbot.Main"
+
+group = 'discordjda'
+version = '1.0-SNAPSHOT'
+
+description = """"""
+
+sourceCompatibility = 1.8
+targetCompatibility = 1.8
+
+run {
+ systemProperty "config.file", project.getProperty("config.file")
+}
+
+repositories {
+ jcenter()
+}
+dependencies {
+ compile group: 'org.apache.commons', name: 'commons-math3', version:'3.4'
+ compile group: 'net.dv8tion', name: 'JDA', version:'3.3.0_272'
+}