Skip to content

Commit 36b3275

Browse files
committed
Compile with Java 8 class file compatibility
1 parent da5f6b8 commit 36b3275

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@ plugins {
1616
def htmlFixer = { htmlFile -> file(htmlFile).text.replace('<html>', '').replace('</html>', '') }
1717

1818
apply plugin: 'idea'
19-
apply plugin: 'org.jetbrains.intellij'
19+
2020
apply plugin: 'java'
21+
sourceCompatibility = 1.8
22+
targetCompatibility = 1.8
2123

24+
apply plugin: 'org.jetbrains.intellij'
2225
intellij {
2326
version ideaVersion
2427
updateSinceUntilBuild false
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Sun Apr 28 18:02:14 CEST 2019
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

0 commit comments

Comments
 (0)