Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
matrix:
include:
- os: macos-latest
java: 8
java: 17
distribution: zulu
scala: 3.x
- os: ubuntu-latest
java: 8
java: 17
distribution: zulu
scala: 3.x
- os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '8'
java-version: '17'
cache: 'sbt'

- name: Publish artifacts
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ThisBuild / version := {
if (orig.endsWith("-SNAPSHOT")) "0.11.0-SNAPSHOT"
else orig
}
val scala3 = "3.7.2"
val scala3 = "3.8.1"
ThisBuild / scalaVersion := scala3

lazy val root = (project in file("."))
Expand All @@ -15,7 +15,7 @@ lazy val root = (project in file("."))
name := "sbt-buildinfo",
scalacOptions := {
scalaBinaryVersion.value match {
case "2.12" => Seq("-Xsource:3", "-Xfatal-warnings", "-unchecked", "-deprecation", "-feature", "-language:implicitConversions")
case "2.12" => Seq("-Xsource:3", "-Xfatal-warnings", "-unchecked", "-deprecation", "-feature", "-language:implicitConversions", "-release:8")
case _ => Seq("-Vdebug")
}
},
Expand All @@ -32,13 +32,13 @@ lazy val root = (project in file("."))
(pluginCrossBuild / sbtVersion) := {
scalaBinaryVersion.value match {
case "2.12" => "1.5.8"
case _ => "2.0.0-RC2"
case _ => "2.0.0-RC9"
}
},
scriptedSbt := {
scalaBinaryVersion.value match {
case "2.12" => "1.10.7"
case _ => "2.0.0-RC2"
case _ => (pluginCrossBuild / sbtVersion).value
}
},
)
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.11.4
sbt.version=1.12.3