summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorDavid Panić <david@panic.tk>2019-04-07 10:37:19 +0200
committerDavid Panić <david@panic.tk>2019-04-07 10:37:19 +0200
commit5a2abd102c0bda7ed24a50b7a802109d14dea79e (patch)
tree0947593abdb2e9f42d940134e8f3eb138b86d32d /build.gradle
Initial commit
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle16
1 files changed, 16 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..0f8d340
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,16 @@
+plugins {
+ id 'java'
+}
+
+group 'com.redstoner'
+version '1.0-SNAPSHOT'
+
+sourceCompatibility = 1.8
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ testCompile group: 'junit', name: 'junit', version: '4.12'
+}