From 1ce2562f5a2afd299f963e083f66b487b77cdf1b Mon Sep 17 00:00:00 2001 From: Fabian Schlenz Date: Tue, 5 Jul 2016 07:54:35 +0200 Subject: [PATCH] Gradle now creates JAVA files compatible to JAVA 7. --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 45adfc8..31def36 100644 --- a/build.gradle +++ b/build.gradle @@ -3,6 +3,9 @@ apply plugin: 'application' mainClassName= 'de.fabianonline.telegram_backup.CommandLineRunner' +sourceCompatibility = 1.7 +targetCompatibility = 1.7 + repositories { mavenCentral() maven {