From: David ‘Bombe’ Roden Date: Tue, 2 Jun 2015 17:31:31 +0000 (+0200) Subject: Add IDEA configuration X-Git-Url: https://git.pterodactylus.net/?p=fwot.git;a=commitdiff_plain;h=c22ae93efcd90645b5677f35ae81a9f9c60820f1 Add IDEA configuration --- diff --git a/build.gradle b/build.gradle index 259a600..a84625f 100644 --- a/build.gradle +++ b/build.gradle @@ -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 index 0000000..7f76f61 --- /dev/null +++ b/ide.gradle @@ -0,0 +1,3 @@ +apply plugin: "idea" + +/* vim: set ts=4 sw=4 et: */