Skip to content

Commit

Permalink
build: Set compileJava target and source compatability to 1.8 (#407)
Browse files Browse the repository at this point in the history
  • Loading branch information
shorinami committed Mar 13, 2024
1 parent 048465e commit a13bf6c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ allprojects {
}
}

tasks.compileJava {
targetCompatibility = "1.8"
sourceCompatibility = "1.8"
}

repositories {
mavenLocal()
mavenCentral()
Expand Down

0 comments on commit a13bf6c

Please sign in to comment.