1
0
mirror of https://github.com/sciwhiz12/Janitor.git synced 2024-09-08 02:18:07 +00:00

Set target java version to 11

This commit is contained in:
SciWhiz12 2021-03-27 08:21:00 +08:00
parent 48966bb4e4
commit 09674b96ca
Signed by: sciwhiz12
GPG Key ID: 622CF446534317E1

View File

@ -16,6 +16,12 @@ dependencies {
testImplementation "org.junit.jupiter:junit-jupiter:$junit_ver"
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
application {
mainClass = 'tk.sciwhiz12.janitor.App'
}