aboutsummaryrefslogtreecommitdiffstats
path: root/gradle
diff options
context:
space:
mode:
authorShevek <[email protected]>2014-02-05 20:41:44 -0800
committerShevek <[email protected]>2014-02-05 20:41:44 -0800
commitec176d2a623f274ad8b0d7962b88a2f7a67446ca (patch)
tree0ee864d492d997b3e00582dc5dc3c686a7f351f4 /gradle
parentf2b03d6787e89255d68f5398a8a8e0d544f12405 (diff)
Fix #13: Negative constants are not in the C99 standard.
Diffstat (limited to 'gradle')
-rw-r--r--gradle/convention.gradle1
1 files changed, 1 insertions, 0 deletions
diff --git a/gradle/convention.gradle b/gradle/convention.gradle
index 9ea6f59..1a609b0 100644
--- a/gradle/convention.gradle
+++ b/gradle/convention.gradle
@@ -1,6 +1,7 @@
apply plugin: 'java' // Plugin as major conventions, overwrites status
sourceCompatibility = 1.5
+targetCompatibility = 1.5
// GRADLE-2087 workaround, perform after java plugin
status = project.hasProperty('preferredStatus')?project.preferredStatus:(version.contains('SNAPSHOT')?'snapshot':'release')