Skip to content

Commit

Permalink
Changed requires Java-version to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias-Kohn committed Jan 5, 2023
1 parent 10ab41a commit 1b26ae7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Implemented:
- Waits for Swing/AWT windows to be closed before ending the running instance;

Changes:
- Support for Java 8 has to be dropped because of the JavaFX dependencies;
- Support for Java 8 has to be dropped because of the JavaFX dependencies.
TigerJython now requires Java 11;

Fixed issues:
- Splash-screen is no longer shown when a new instance is started in the background;
Expand Down
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ version := "3.0"
// We use a recent version of Scala
scalaVersion := "2.13.10"

// Unfortunately, we need to limit the Java version as Java 8 is still fairly common
// javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
javacOptions ++= Seq("-source", "11", "-target", "11")

// Actual build information, such as the date of building the application
val currentDate = java.time.LocalDate.now
Expand Down

0 comments on commit 1b26ae7

Please sign in to comment.