mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-15 22:42:47 +00:00
Update targets to java 17 (#186)
The newly upgraded dependencies (gradle 8.3) now require java 17 and the java and jvm targets must both match or there will be a build failure due to lint.
This commit is contained in:
parent
df4bdce00d
commit
3eba91e55c
3 changed files with 10 additions and 10 deletions
|
@ -17,6 +17,6 @@ task makeText(type: JavaExec, dependsOn: ['jar']) {
|
|||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue