diff options
author | Julien Gouesse <[email protected]> | 2019-05-26 21:28:24 +0200 |
---|---|---|
committer | Julien Gouesse <[email protected]> | 2019-05-26 21:28:24 +0200 |
commit | 0a70b1f3eceadb203c5182334378d95921915f5b (patch) | |
tree | 69708e21d325756b6f0e3b690d007fb2096fff28 /build.gradle | |
parent | 50d8f5e9479e64961a8ae28363d5783fb866d2fb (diff) |
Sets the compiler compliance to 1.8
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 7bdaa56..9c4da89 100644 --- a/build.gradle +++ b/build.gradle @@ -7,8 +7,8 @@ version = '1.0-SNAPSHOT' subprojects { apply plugin: 'java' - sourceCompatibility = 1.7 - targetCompatibility = 1.7 + sourceCompatibility = 1.8 + targetCompatibility = 1.8 task packageSources(type: Jar) { classifier = 'sources' |