Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
⬇️ Downgrade build to target Java 1.8 (#19)
Browse files Browse the repository at this point in the history
IntelliJ Platform 2020.1 is distributed with JBR11, but it is still compatible with JBR8, so the plugin needs to target Java 1.8
  • Loading branch information
gilday committed Aug 6, 2020
1 parent fe719a4 commit bfde6a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ dependencies {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

intellij {
Expand Down

0 comments on commit bfde6a7

Please # to comment.