Add IDEA configuration
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 2 Jun 2015 17:31:31 +0000 (19:31 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 2 Jun 2015 17:31:31 +0000 (19:31 +0200)
build.gradle
ide.gradle [new file with mode: 0644]

index 259a600..a84625f 100644 (file)
@@ -1,5 +1,7 @@
 apply plugin: 'java'
 
+sourceCompatibility = "1.8"
+
 repositories {
     mavenCentral()
 }
@@ -8,4 +10,6 @@ dependencies {
     testCompile "junit:junit:4.12"
 }
 
+apply from: "ide.gradle"
+
 /* vim: set ts=4 sw=4 et: */
diff --git a/ide.gradle b/ide.gradle
new file mode 100644 (file)
index 0000000..7f76f61
--- /dev/null
@@ -0,0 +1,3 @@
+apply plugin: "idea"
+
+/* vim: set ts=4 sw=4 et: */