This commit is contained in:
Jason Penilla 2021-11-22 00:26:14 -08:00 committed by MiniDigger | Martin
parent 67069e1e74
commit d3f17db87d
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
java: [16] java: [17]
fail-fast: true fail-fast: true
steps: steps:
- uses: actions/checkout@v2.3.5 - uses: actions/checkout@v2.3.5

View File

@ -11,7 +11,7 @@ allprojects {
java { java {
toolchain { toolchain {
languageVersion.set(JavaLanguageVersion.of(16)) languageVersion.set(JavaLanguageVersion.of(17))
} }
} }
} }
@ -19,7 +19,7 @@ allprojects {
subprojects { subprojects {
tasks.withType<JavaCompile> { tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name() options.encoding = Charsets.UTF_8.name()
options.release.set(16) options.release.set(17)
} }
tasks.withType<Javadoc> { tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name() options.encoding = Charsets.UTF_8.name()