Skip to content

Commit

Permalink
#324 temporarily switch target compatibility to Java 8 to make at lea…
Browse files Browse the repository at this point in the history
…st 32-bit version still run under Java 8 (most likely from Oracle)
  • Loading branch information
angryziber committed Jan 18, 2022
1 parent 605c1ef commit fa8fef9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def platform = osName.contains("Linux") ? 'linux' + (is64 ? '64' : '32') :
osName.contains("OS X") ? 'mac' + (isArm ? "Arm64" : "X86") : 'unknown'

version = gitVersion()
sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 8
targetCompatibility = 8

sourceSets {
main {
Expand Down

0 comments on commit fa8fef9

Please sign in to comment.