Skip to content

Commit

Permalink
Enforce JVM 11
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-choe committed Mar 22, 2021
1 parent 8a33e22 commit bc5642d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: "Setup JDK 1.8"
- name: "Setup JDK 11"
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11

- name: "Cache Gradle"
uses: actions/cache@v2
Expand Down
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ os: linux
dist: xenial

jdk:
- openjdk8
- openjdk10
- openjdk11

before_install:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {

tasks {
withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "11"
}

withType<DokkaTask> {
Expand Down

0 comments on commit bc5642d

Please sign in to comment.