aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle41
1 files changed, 41 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..7405842
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,41 @@
+buildscript {
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2'
+ }
+}
+
+plugins {
+ id 'java'
+ id 'application'
+ id 'com.github.johnrengelman.shadow' version '2.0.2'
+}
+
+group 'de.romjaki'
+version '1.0-SNAPSHOT'
+
+mainClassName = "de.romjaki.tokenstealer.Main"
+
+manifest {
+ jar {
+ attributes 'Main-Class': mainClassName
+ }
+}
+
+shadowJar {
+ classifier = 'shadow'
+}
+
+sourceCompatibility = 1.8
+
+repositories {
+ mavenCentral()
+}
+
+
+dependencies {
+ compile group: 'org.xerial', name: 'sqlite-jdbc', version: '+'
+ testCompile group: 'junit', name: 'junit', version: '4.12'
+}