Skip to content

Commit ed9710a

Browse files
authored
sbt 2.0.0-RC9 (#565)
1 parent cafea08 commit ed9710a

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
distribution: zulu
1818
jobtype: sbt-1
1919
- os: ubuntu-latest
20-
java: 8
20+
java: 17
2121
distribution: temurin
2222
jobtype: sbt-2
2323
- os: ubuntu-latest

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ThisBuild / version := {
77
ThisBuild / organization := "com.eed3si9n"
88

99
def scala212 = "2.12.20"
10-
def scala3 = "3.7.2"
10+
def scala3 = "3.8.1"
1111
ThisBuild / crossScalaVersions := Seq(scala212, scala3)
1212
ThisBuild / scalaVersion := scala3
1313

@@ -38,13 +38,13 @@ lazy val root = (project in file("."))
3838
(pluginCrossBuild / sbtVersion) := {
3939
scalaBinaryVersion.value match {
4040
case "2.12" => "1.5.8"
41-
case _ => "2.0.0-RC6"
41+
case _ => "2.0.0-RC9"
4242
}
4343
}
4444
scriptedSbt := {
4545
scalaBinaryVersion.value match {
4646
case "2.12" => "1.10.7"
47-
case _ => "2.0.0-RC6"
47+
case _ => "2.0.0-RC9"
4848
}
4949
}
5050
Compile / generateContrabands / sourceManaged := baseDirectory.value / "src" / "main" / "scala"

src/main/scala/sbtassembly/AssemblyKeys.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ trait AssemblyKeys {
2020
lazy val assemblyPackageDependency = taskKey[FileRef]("Produces the dependency artifact")
2121
lazy val assemblyJarName = taskKey[String]("name of the über jar")
2222
lazy val assemblyDefaultJarName = taskKey[String]("default name of the über jar")
23+
@transient
2324
lazy val assemblyOutputPath = taskKey[File]("output path of the über jar")
2425

2526
@transient

0 commit comments

Comments
 (0)