Skip to content

Commit

Permalink
Bring back java 8 support (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
kawamuray committed Oct 6, 2023
1 parent 5899d8d commit d7dd139
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [11, 17, 20]
java: [8, 11, 17, 20]
steps:
- uses: actions/checkout@v2
- name: Setup java
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ subprojects {
group = "com.linecorp.decaton"
version = "${version}" + (snapshot.toBoolean() ? "-SNAPSHOT" : "")

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

repositories {
mavenCentral()
Expand Down Expand Up @@ -74,8 +74,8 @@ subprojects {

// Likely be used for most modules
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
testImplementation "org.mockito:mockito-core:5.5.0"
testImplementation "org.mockito:mockito-junit-jupiter:5.5.0"
testImplementation "org.mockito:mockito-core:4.11.0"
testImplementation "org.mockito:mockito-junit-jupiter:4.11.0"
itImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
}

Expand Down

0 comments on commit d7dd139

Please sign in to comment.