Skip to content

Commit

Permalink
[COMMON] revert to JDK 17
Browse files Browse the repository at this point in the history
  • Loading branch information
chia7712 committed Jul 4, 2024
1 parent 4f9718e commit 7394e59
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ application {
}

java {
sourceCompatibility = 21
targetCompatibility = 21
sourceCompatibility = 17
targetCompatibility = 17
}

ext {
Expand Down
4 changes: 2 additions & 2 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ dependencies {
}

java {
sourceCompatibility = 21
targetCompatibility = 21
sourceCompatibility = 17
targetCompatibility = 17
}

ext {
Expand Down
4 changes: 2 additions & 2 deletions connector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ dependencies {
}

java {
sourceCompatibility = 21
targetCompatibility = 21
sourceCompatibility = 17
targetCompatibility = 17
}

ext {
Expand Down
4 changes: 2 additions & 2 deletions fs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ dependencies {
}

java {
sourceCompatibility = 21
targetCompatibility = 21
sourceCompatibility = 17
targetCompatibility = 17
}

ext {
Expand Down
4 changes: 2 additions & 2 deletions gui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ repositories {
}

java {
sourceCompatibility = 21
targetCompatibility = 21
sourceCompatibility = 17
targetCompatibility = 17
}

javafx {
Expand Down
4 changes: 2 additions & 2 deletions it/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ dependencies {
}

java {
sourceCompatibility = 21
targetCompatibility = 21
sourceCompatibility = 17
targetCompatibility = 17
}

ext {
Expand Down

0 comments on commit 7394e59

Please sign in to comment.