Skip to content

Commit

Permalink
upgrade to Java 11 (#19)
Browse files Browse the repository at this point in the history
* Update required Java version in README.md

Java 11+ required for class file version 55.

* upgrade to Java 11

---------

Co-authored-by: memo <[email protected]>
  • Loading branch information
Zasco and memo33 authored Dec 16, 2024
1 parent aa8c16a commit 0a6ec2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Currently, this program only comes with a command-line interface (CLI).
## Usage

- Prerequisites:
- Java 8+ (https://adoptium.net/installation/)
- Java 11+ (https://adoptium.net/installation/)
- Enough disk space
- On macOS and Linux (not needed on Windows):
- Mono ([macOS](https://www.mono-project.com/docs/getting-started/install/)/[Linux](https://repology.org/project/mono/versions)):
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "sc4pac"

ThisBuild / organization := "io.github.memo33"

ThisBuild / version := "0.5.0"
ThisBuild / version := "0.5.1-SNAPSHOT"

// ThisBuild / versionScheme := Some("early-semver")

Expand All @@ -22,9 +22,9 @@ ThisBuild / scalacOptions ++= Seq(
"-Wvalue-discard",
"-source:future",
"-encoding", "UTF-8",
"-release:8")
"-release:11")

ThisBuild / javacOptions ++= Seq("--release", "8")
ThisBuild / javacOptions ++= Seq("--release", "11")

console / initialCommands := """
import io.github.memo33.sc4pac.*
Expand Down

0 comments on commit 0a6ec2a

Please sign in to comment.