diff options
author | Julien Gouesse <[email protected]> | 2016-07-30 16:51:23 +0200 |
---|---|---|
committer | Julien Gouesse <[email protected]> | 2016-07-30 16:51:23 +0200 |
commit | e4fc1e4a0b1879d8a4b29294992466d4292c08df (patch) | |
tree | bb0fc152b550fda7aeb753cad5e869fc432940dd /build.gradle | |
parent | 174f281ccb388f26a9229b24b14f5feb9c158963 (diff) |
Switches from Java 1.6 to Java 1.7 in ardor3d-performance and in the Gradle scripts too
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index d5ad1e5..7bdaa56 100644 --- a/build.gradle +++ b/build.gradle @@ -7,8 +7,8 @@ version = '1.0-SNAPSHOT' subprojects { apply plugin: 'java' - sourceCompatibility = 1.6 - targetCompatibility = 1.6 + sourceCompatibility = 1.7 + targetCompatibility = 1.7 task packageSources(type: Jar) { classifier = 'sources' |