From 11f94b0810cd51aa2c2c08a5fea5691ffa63b260 Mon Sep 17 00:00:00 2001 From: Thomas Darimont Date: Wed, 12 Feb 2014 10:24:06 +0100 Subject: [PATCH] DATAREDIS-265 - Update Java source and target compatibility to Java 6. Updated build.gradle accordingly. Original pull request: #36 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index b4aad7133..0ddf12f22 100644 --- a/build.gradle +++ b/build.gradle @@ -70,8 +70,8 @@ dependencies { testCompile("com.thoughtworks.xstream:xstream:1.4.4", optional) } -sourceCompatibility = 1.5 -targetCompatibility = 1.5 +sourceCompatibility = 1.6 +targetCompatibility = 1.6 javadoc { ext.srcDir = file("${projectDir}/docs/src/api")