Use sbt 1.5.1

This commit is contained in:
Eugene Yokota 2021-05-02 23:25:23 -04:00
parent e2ae8d1182
commit 8f80367e3c
7 changed files with 69 additions and 55 deletions

100
build.sbt
View File

@ -73,17 +73,17 @@ def commonBaseSettings: Seq[Setting[_]] = Def.settings(
)(Resolver.ivyStylePatterns), )(Resolver.ivyStylePatterns),
testFrameworks += TestFramework("hedgehog.sbt.Framework"), testFrameworks += TestFramework("hedgehog.sbt.Framework"),
testFrameworks += TestFramework("verify.runner.Framework"), testFrameworks += TestFramework("verify.runner.Framework"),
concurrentRestrictions in Global += Util.testExclusiveRestriction, Global / concurrentRestrictions += Util.testExclusiveRestriction,
testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"), Test / testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"),
testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "2"), Test / testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "2"),
javacOptions in compile ++= Seq("-Xlint", "-Xlint:-serial"), compile / javacOptions ++= Seq("-Xlint", "-Xlint:-serial"),
Compile / doc / scalacOptions ++= { Compile / doc / scalacOptions ++= {
import scala.sys.process._ import scala.sys.process._
val devnull = ProcessLogger(_ => ()) val devnull = ProcessLogger(_ => ())
val tagOrSha = ("git describe --exact-match" #|| "git rev-parse HEAD").lineStream(devnull).head val tagOrSha = ("git describe --exact-match" #|| "git rev-parse HEAD").lineStream(devnull).head
Seq( Seq(
"-sourcepath", "-sourcepath",
(baseDirectory in LocalRootProject).value.getAbsolutePath, (LocalRootProject / baseDirectory).value.getAbsolutePath,
"-doc-source-url", "-doc-source-url",
s"https://github.com/sbt/sbt/tree/$tagOrSha€{FILE_PATH}.scala" s"https://github.com/sbt/sbt/tree/$tagOrSha€{FILE_PATH}.scala"
) )
@ -99,8 +99,8 @@ def commonBaseSettings: Seq[Setting[_]] = Def.settings(
Test / unmanagedSources / inputFileStamps := Test / unmanagedSources / inputFileStamps :=
(Test / unmanagedSources / inputFileStamps).dependsOn(Test / javafmtOnCompile).value, (Test / unmanagedSources / inputFileStamps).dependsOn(Test / javafmtOnCompile).value,
crossScalaVersions := List(scala212, scala213), crossScalaVersions := List(scala212, scala213),
publishArtifact in Test := false, Test / publishArtifact := false,
fork in run := true, run / fork := true,
) )
def commonSettings: Seq[Setting[_]] = def commonSettings: Seq[Setting[_]] =
commonBaseSettings :+ commonBaseSettings :+
@ -118,7 +118,12 @@ def baseSettings: Seq[Setting[_]] =
def testedBaseSettings: Seq[Setting[_]] = def testedBaseSettings: Seq[Setting[_]] =
baseSettings ++ testDependencies baseSettings ++ testDependencies
val sbt13Plus = Seq("1.3.0") val sbt13Plus =
Seq(
"1.3.0",
"1.4.0",
"1.5.0",
)
val sbt10Plus = val sbt10Plus =
Seq( Seq(
"1.0.0", "1.0.0",
@ -191,8 +196,8 @@ lazy val sbtRoot: Project = (project in file("."))
Transform.conscriptSettings(bundledLauncherProj), Transform.conscriptSettings(bundledLauncherProj),
publish := {}, publish := {},
publishLocal := {}, publishLocal := {},
skip in publish := true, publish / skip := true,
commands in Global += Command Global / commands += Command
.single("sbtOn")((state, dir) => s"sbtProj/test:runMain sbt.RunFromSourceMain $dir" :: state), .single("sbtOn")((state, dir) => s"sbtProj/test:runMain sbt.RunFromSourceMain $dir" :: state),
mimaSettings, mimaSettings,
mimaPreviousArtifacts := Set.empty, mimaPreviousArtifacts := Set.empty,
@ -232,7 +237,7 @@ lazy val bundledLauncherProj =
description := "sbt application launcher", description := "sbt application launcher",
autoScalaLibrary := false, autoScalaLibrary := false,
crossPaths := false, crossPaths := false,
packageBin in Compile := sbtLaunchJar.value, Compile / packageBin := sbtLaunchJar.value,
mimaSettings, mimaSettings,
mimaPreviousArtifacts := Set() mimaPreviousArtifacts := Set()
) )
@ -369,11 +374,11 @@ lazy val utilLogging = (project in file("internal") / "util-logging")
case v if v.startsWith("2.12.") => List("-Ywarn-unused:-locals,-explicits,-privates") case v if v.startsWith("2.12.") => List("-Ywarn-unused:-locals,-explicits,-privates")
case _ => List() case _ => List()
}), }),
sourceManaged in (Compile, generateContrabands) := baseDirectory.value / "src" / "main" / "contraband-scala", Compile / generateContrabands / sourceManaged := baseDirectory.value / "src" / "main" / "contraband-scala",
managedSourceDirectories in Compile += Compile / managedSourceDirectories +=
baseDirectory.value / "src" / "main" / "contraband-scala", baseDirectory.value / "src" / "main" / "contraband-scala",
contrabandFormatsForType in generateContrabands in Compile := { tpe => Compile / generateContrabands / contrabandFormatsForType := { tpe =>
val old = (contrabandFormatsForType in generateContrabands in Compile).value val old = (Compile / generateContrabands / contrabandFormatsForType).value
val name = tpe.removeTypeParameters.name val name = tpe.removeTypeParameters.name
if (name == "Throwable") Nil if (name == "Throwable") Nil
else old(tpe) else old(tpe)
@ -407,6 +412,7 @@ lazy val utilLogging = (project in file("internal") / "util-logging")
exclude[IncompatibleSignatureProblem]("sbt.internal.util.MainAppender*"), exclude[IncompatibleSignatureProblem]("sbt.internal.util.MainAppender*"),
exclude[MissingTypesProblem]("sbt.internal.util.ConsoleAppender"), exclude[MissingTypesProblem]("sbt.internal.util.ConsoleAppender"),
exclude[MissingTypesProblem]("sbt.internal.util.BufferedAppender"), exclude[MissingTypesProblem]("sbt.internal.util.BufferedAppender"),
exclude[MissingClassProblem]("sbt.internal.util.Terminal$BlockingInputStream$"),
), ),
) )
.configure(addSbtIO) .configure(addSbtIO)
@ -475,10 +481,10 @@ lazy val testingProj = (project in file("testing"))
sjsonNewScalaJson.value sjsonNewScalaJson.value
), ),
Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates", Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates",
managedSourceDirectories in Compile += Compile / managedSourceDirectories +=
baseDirectory.value / "src" / "main" / "contraband-scala", baseDirectory.value / "src" / "main" / "contraband-scala",
sourceManaged in (Compile, generateContrabands) := baseDirectory.value / "src" / "main" / "contraband-scala", Compile / generateContrabands / sourceManaged := baseDirectory.value / "src" / "main" / "contraband-scala",
contrabandFormatsForType in generateContrabands in Compile := ContrabandConfig.getFormats, Compile / generateContrabands / contrabandFormatsForType := ContrabandConfig.getFormats,
mimaSettings, mimaSettings,
mimaBinaryIssueFilters ++= Seq( mimaBinaryIssueFilters ++= Seq(
// private[sbt] // private[sbt]
@ -559,6 +565,7 @@ lazy val stdTaskProj = (project in file("tasks-standard"))
mimaBinaryIssueFilters ++= Seq( mimaBinaryIssueFilters ++= Seq(
// unused private[sbt] // unused private[sbt]
exclude[DirectMissingMethodProblem]("sbt.Task.mapTask"), exclude[DirectMissingMethodProblem]("sbt.Task.mapTask"),
exclude[NewMixinForwarderProblem]("sbt.std.TaskExtra.joinAnyTasks"),
), ),
) )
.configure(addSbtIO) .configure(addSbtIO)
@ -571,9 +578,9 @@ lazy val runProj = (project in file("run"))
testedBaseSettings, testedBaseSettings,
name := "Run", name := "Run",
Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates", Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates",
managedSourceDirectories in Compile += Compile / managedSourceDirectories +=
baseDirectory.value / "src" / "main" / "contraband-scala", baseDirectory.value / "src" / "main" / "contraband-scala",
sourceManaged in (Compile, generateContrabands) := baseDirectory.value / "src" / "main" / "contraband-scala", Compile / generateContrabands / sourceManaged := baseDirectory.value / "src" / "main" / "contraband-scala",
mimaSettings, mimaSettings,
mimaBinaryIssueFilters ++= Seq( mimaBinaryIssueFilters ++= Seq(
// copy method was never meant to be public // copy method was never meant to be public
@ -668,6 +675,7 @@ lazy val actionsProj = (project in file("main-actions"))
exclude[DirectMissingMethodProblem]("sbt.Doc.generate"), exclude[DirectMissingMethodProblem]("sbt.Doc.generate"),
exclude[DirectMissingMethodProblem]("sbt.compiler.Eval.filesModifiedBytes"), exclude[DirectMissingMethodProblem]("sbt.compiler.Eval.filesModifiedBytes"),
exclude[DirectMissingMethodProblem]("sbt.compiler.Eval.fileModifiedBytes"), exclude[DirectMissingMethodProblem]("sbt.compiler.Eval.fileModifiedBytes"),
exclude[DirectMissingMethodProblem]("sbt.Doc.$init$"),
), ),
) )
.configure( .configure(
@ -687,10 +695,10 @@ lazy val protocolProj = (project in file("protocol"))
name := "Protocol", name := "Protocol",
libraryDependencies ++= Seq(sjsonNewScalaJson.value, ipcSocket), libraryDependencies ++= Seq(sjsonNewScalaJson.value, ipcSocket),
Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates", Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates",
managedSourceDirectories in Compile += Compile / managedSourceDirectories +=
baseDirectory.value / "src" / "main" / "contraband-scala", baseDirectory.value / "src" / "main" / "contraband-scala",
sourceManaged in (Compile, generateContrabands) := baseDirectory.value / "src" / "main" / "contraband-scala", Compile / generateContrabands / sourceManaged := baseDirectory.value / "src" / "main" / "contraband-scala",
contrabandFormatsForType in generateContrabands in Compile := ContrabandConfig.getFormats, Compile / generateContrabands / contrabandFormatsForType := ContrabandConfig.getFormats,
mimaSettings, mimaSettings,
mimaBinaryIssueFilters ++= Seq( mimaBinaryIssueFilters ++= Seq(
// copy method was never meant to be public // copy method was never meant to be public
@ -729,10 +737,10 @@ lazy val commandProj = (project in file("main-command"))
name := "Command", name := "Command",
libraryDependencies ++= Seq(launcherInterface, sjsonNewScalaJson.value, templateResolverApi), libraryDependencies ++= Seq(launcherInterface, sjsonNewScalaJson.value, templateResolverApi),
Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates", Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates",
managedSourceDirectories in Compile += Compile / managedSourceDirectories +=
baseDirectory.value / "src" / "main" / "contraband-scala", baseDirectory.value / "src" / "main" / "contraband-scala",
sourceManaged in (Compile, generateContrabands) := baseDirectory.value / "src" / "main" / "contraband-scala", Compile / generateContrabands / sourceManaged := baseDirectory.value / "src" / "main" / "contraband-scala",
contrabandFormatsForType in generateContrabands in Compile := ContrabandConfig.getFormats, Compile / generateContrabands / contrabandFormatsForType := ContrabandConfig.getFormats,
mimaSettings, mimaSettings,
mimaBinaryIssueFilters ++= Vector( mimaBinaryIssueFilters ++= Vector(
exclude[DirectMissingMethodProblem]("sbt.Exit.apply"), exclude[DirectMissingMethodProblem]("sbt.Exit.apply"),
@ -766,8 +774,8 @@ lazy val commandProj = (project in file("main-command"))
exclude[MissingTypesProblem]("sbt.internal.server.ServerConnection*"), exclude[MissingTypesProblem]("sbt.internal.server.ServerConnection*"),
exclude[IncompatibleSignatureProblem]("sbt.internal.server.ServerConnection.*") exclude[IncompatibleSignatureProblem]("sbt.internal.server.ServerConnection.*")
), ),
unmanagedSources in (Compile, headerCreate) := { Compile / headerCreate / unmanagedSources := {
val old = (unmanagedSources in (Compile, headerCreate)).value val old = (Compile / headerCreate / unmanagedSources).value
old filterNot { x => old filterNot { x =>
(x.getName startsWith "NG") || (x.getName == "ReferenceCountedFileDescriptor.java") (x.getName startsWith "NG") || (x.getName == "ReferenceCountedFileDescriptor.java")
} }
@ -807,7 +815,7 @@ lazy val mainSettingsProj = (project in file("main-settings"))
.settings( .settings(
testedBaseSettings, testedBaseSettings,
name := "Main Settings", name := "Main Settings",
testOptions in Test ++= { Test / testOptions ++= {
val cp = (Test / fullClasspathAsJars).value.map(_.data).mkString(java.io.File.pathSeparator) val cp = (Test / fullClasspathAsJars).value.map(_.data).mkString(java.io.File.pathSeparator)
val framework = TestFrameworks.ScalaTest val framework = TestFrameworks.ScalaTest
Tests.Argument(framework, s"-Dsbt.server.classpath=$cp") :: Tests.Argument(framework, s"-Dsbt.server.classpath=$cp") ::
@ -861,7 +869,7 @@ lazy val zincLmIntegrationProj = (project in file("zinc-lm-integration"))
.settings( .settings(
name := "Zinc LM Integration", name := "Zinc LM Integration",
testedBaseSettings, testedBaseSettings,
testOptions in Test += Test / testOptions +=
Tests.Argument(TestFrameworks.ScalaTest, s"-Dsbt.zinc.version=$zincVersion"), Tests.Argument(TestFrameworks.ScalaTest, s"-Dsbt.zinc.version=$zincVersion"),
mimaSettingsSince(sbt13Plus), mimaSettingsSince(sbt13Plus),
mimaBinaryIssueFilters ++= Seq( mimaBinaryIssueFilters ++= Seq(
@ -903,10 +911,10 @@ lazy val mainProj = (project in file("main"))
case v if v.startsWith("2.12.") => List() case v if v.startsWith("2.12.") => List()
case _ => List(scalaPar) case _ => List(scalaPar)
}), }),
managedSourceDirectories in Compile += Compile / managedSourceDirectories +=
baseDirectory.value / "src" / "main" / "contraband-scala", baseDirectory.value / "src" / "main" / "contraband-scala",
sourceManaged in (Compile, generateContrabands) := baseDirectory.value / "src" / "main" / "contraband-scala", Compile / generateContrabands / sourceManaged := baseDirectory.value / "src" / "main" / "contraband-scala",
testOptions in Test += Tests Test / testOptions += Tests
.Argument(TestFrameworks.ScalaCheck, "-minSuccessfulTests", "1000"), .Argument(TestFrameworks.ScalaCheck, "-minSuccessfulTests", "1000"),
SettingKey[Boolean]("usePipelining") := false, SettingKey[Boolean]("usePipelining") := false,
mimaSettings, mimaSettings,
@ -1025,6 +1033,10 @@ lazy val mainProj = (project in file("main"))
exclude[IncompatibleSignatureProblem]("sbt.internal.Act.taskAxis"), exclude[IncompatibleSignatureProblem]("sbt.internal.Act.taskAxis"),
// private[sbt] method, used to call the correct sourcePositionMapper // private[sbt] method, used to call the correct sourcePositionMapper
exclude[DirectMissingMethodProblem]("sbt.Defaults.foldMappers"), exclude[DirectMissingMethodProblem]("sbt.Defaults.foldMappers"),
exclude[DirectMissingMethodProblem]("sbt.Defaults.toAbsoluteSourceMapper"),
exclude[DirectMissingMethodProblem]("sbt.Defaults.earlyArtifactPathSetting"),
exclude[MissingClassProblem]("sbt.internal.server.BuildServerReporter$"),
exclude[IncompatibleTemplateDefProblem]("sbt.internal.server.BuildServerReporter"),
) )
) )
.configure( .configure(
@ -1059,7 +1071,7 @@ lazy val sbtProj = (project in file("sbt-app"))
Test / run / connectInput := true, Test / run / connectInput := true,
Test / run / outputStrategy := Some(StdoutOutput), Test / run / outputStrategy := Some(StdoutOutput),
Test / run / fork := true, Test / run / fork := true,
testOptions in Test ++= { Test / testOptions ++= {
val cp = (Test / fullClasspathAsJars).value.map(_.data).mkString(java.io.File.pathSeparator) val cp = (Test / fullClasspathAsJars).value.map(_.data).mkString(java.io.File.pathSeparator)
val framework = TestFrameworks.ScalaTest val framework = TestFrameworks.ScalaTest
Tests.Argument(framework, s"-Dsbt.server.classpath=$cp") :: Tests.Argument(framework, s"-Dsbt.server.classpath=$cp") ::
@ -1302,6 +1314,8 @@ lazy val sbtIgnoredProblems = {
exclude[ReversedMissingMethodProblem]("sbt.Import.sbt$Import$_setter_$SemanticSelector_="), exclude[ReversedMissingMethodProblem]("sbt.Import.sbt$Import$_setter_$SemanticSelector_="),
// Dropped in favour of plain scala.Function, and its compose method // Dropped in favour of plain scala.Function, and its compose method
exclude[DirectMissingMethodProblem]("sbt.package.toFn1"), exclude[DirectMissingMethodProblem]("sbt.package.toFn1"),
exclude[NewMixinForwarderProblem]("sbt.IOSyntax1.singleFileFinder"),
exclude[DirectMissingMethodProblem]("sbt.IOSyntax1.$init$"),
) )
} }
@ -1320,8 +1334,8 @@ lazy val vscodePlugin = (project in file("vscode-sbt-scala"))
bspEnabled := false, bspEnabled := false,
crossPaths := false, crossPaths := false,
crossScalaVersions := Seq(baseScalaVersion), crossScalaVersions := Seq(baseScalaVersion),
skip in publish := true, publish / skip := true,
compile in Compile := { Compile / compile := {
val _ = update.value val _ = update.value
runNpm("run compile", baseDirectory.value, streams.value.log) runNpm("run compile", baseDirectory.value, streams.value.log)
sbt.internal.inc.Analysis.empty sbt.internal.inc.Analysis.empty
@ -1355,7 +1369,7 @@ def scriptedTask(launch: Boolean): Def.Initialize[InputTask[Unit]] = Def.inputTa
val _ = publishLocalBinAll.value val _ = publishLocalBinAll.value
val launchJar = s"-Dsbt.launch.jar=${(bundledLauncherProj / Compile / packageBin).value}" val launchJar = s"-Dsbt.launch.jar=${(bundledLauncherProj / Compile / packageBin).value}"
Scripted.doScripted( Scripted.doScripted(
(scalaInstance in scriptedSbtReduxProj).value, (scriptedSbtReduxProj / scalaInstance).value,
scriptedSource.value, scriptedSource.value,
scriptedBufferLog.value, scriptedBufferLog.value,
Def.setting(Scripted.scriptedParser(scriptedSource.value)).parsed, Def.setting(Scripted.scriptedParser(scriptedSource.value)).parsed,
@ -1421,9 +1435,9 @@ def otherRootSettings =
Seq( Seq(
scripted := scriptedTask(false).evaluated, scripted := scriptedTask(false).evaluated,
scriptedUnpublished := scriptedTask(false).evaluated, scriptedUnpublished := scriptedTask(false).evaluated,
scriptedSource := (sourceDirectory in sbtProj).value / "sbt-test", scriptedSource := (sbtProj / sourceDirectory).value / "sbt-test",
watchTriggers in scripted += scriptedSource.value.toGlob / **, scripted / watchTriggers += scriptedSource.value.toGlob / **,
watchTriggers in scriptedUnpublished := (watchTriggers in scripted).value, scriptedUnpublished / watchTriggers := (scripted / watchTriggers).value,
scriptedLaunchOpts := List("-Xmx1500M", "-Xms512M", "-server") ::: scriptedLaunchOpts := List("-Xmx1500M", "-Xms512M", "-server") :::
(sys.props.get("sbt.ivy.home") match { (sys.props.get("sbt.ivy.home") match {
case Some(home) => List(s"-Dsbt.ivy.home=$home") case Some(home) => List(s"-Dsbt.ivy.home=$home")
@ -1447,7 +1461,7 @@ def otherRootSettings =
}), }),
scripted := scriptedTask(true).evaluated, scripted := scriptedTask(true).evaluated,
scriptedUnpublished := scriptedTask(true).evaluated, scriptedUnpublished := scriptedTask(true).evaluated,
scriptedSource := (sourceDirectory in sbtProj).value / "repo-override-test" scriptedSource := (sbtProj / sourceDirectory).value / "repo-override-test"
) )
) )
@ -1501,8 +1515,8 @@ def customCommands: Seq[Setting[_]] = Seq(
(lmOpt map { case ProjectRef(build, _) => "{" + build.toString + "}/publishLocal" }).toList ::: (lmOpt map { case ProjectRef(build, _) => "{" + build.toString + "}/publishLocal" }).toList :::
(zincOpt map { (zincOpt map {
case ProjectRef(build, _) => case ProjectRef(build, _) =>
val zincSv = get(scalaVersion in ProjectRef(build, "zinc")) val zincSv = get((ProjectRef(build, "zinc") / scalaVersion))
val csv = get(crossScalaVersions in ProjectRef(build, "compilerBridge")).toList val csv = get((ProjectRef(build, "compilerBridge") / crossScalaVersions)).toList
(csv flatMap { bridgeSv => (csv flatMap { bridgeSv =>
s"++$bridgeSv" :: ("{" + build.toString + "}compilerBridge/publishLocal") :: Nil s"++$bridgeSv" :: ("{" + build.toString + "}compilerBridge/publishLocal") :: Nil
}) ::: }) :::

View File

@ -30,7 +30,7 @@ object HouseRulesPlugin extends AutoPlugin {
scalacOptions += "-Ywarn-value-discard", scalacOptions += "-Ywarn-value-discard",
scalacOptions ++= "-Ywarn-unused-import".ifScala(v => 11 <= v && v <= 12).value.toList scalacOptions ++= "-Ywarn-unused-import".ifScala(v => 11 <= v && v <= 12).value.toList
) ++ Seq(Compile, Test).flatMap( ) ++ Seq(Compile, Test).flatMap(
c => scalacOptions in (c, console) --= Seq("-Ywarn-unused-import", "-Xlint") c => (c / console / scalacOptions) --= Seq("-Ywarn-unused-import", "-Xlint")
) )
private def scalaPartV = Def setting (CrossVersion partialVersion scalaVersion.value) private def scalaPartV = Def setting (CrossVersion partialVersion scalaVersion.value)

View File

@ -27,8 +27,8 @@ object PublishBinPlugin extends AutoPlugin {
Classpaths.deliverPattern(crossTarget.value), Classpaths.deliverPattern(crossTarget.value),
if (isSnapshot.value) "integration" else "release", if (isSnapshot.value) "integration" else "release",
ivyConfigurations.value.map(c => ConfigRef(c.name)).toVector, ivyConfigurations.value.map(c => ConfigRef(c.name)).toVector,
(packagedArtifacts in publishLocalBin).value.toVector, (publishLocalBin / packagedArtifacts).value.toVector,
(checksums in publishLocalBin).value.toVector, (publishLocalBin / checksums).value.toVector,
logging = ivyLoggingLevel.value, logging = ivyLoggingLevel.value,
overwrite = isSnapshot.value overwrite = isSnapshot.value
), ),
@ -59,9 +59,9 @@ object PublishBinPlugin extends AutoPlugin {
dummyFile dummyFile
}, },
dummyDoc / packagedArtifact := (Compile / packageDoc / artifact).value -> dummyDoc.value, dummyDoc / packagedArtifact := (Compile / packageDoc / artifact).value -> dummyDoc.value,
packagedArtifacts in publishLocalBin := publishLocalBin / packagedArtifacts :=
Classpaths Classpaths
.packaged(Seq(packageBin in Compile, packageSrc in Compile, makePom, dummyDoc)) .packaged(Seq(Compile / packageBin, Compile / packageSrc, makePom, dummyDoc))
.value .value
) )
} }

View File

@ -26,7 +26,7 @@ object SbtLauncherPlugin extends AutoPlugin {
} }
}, },
sbtLaunchJar := { sbtLaunchJar := {
val propFiles = (resources in Compile).value val propFiles = (Compile / resources).value
val propFileLocations = val propFileLocations =
for (file <- propFiles; if file.getName != "resources") yield { for (file <- propFiles; if file.getName != "resources") yield {
if (file.getName == "sbt.boot.properties") "sbt/sbt.boot.properties" -> file if (file.getName == "sbt.boot.properties") "sbt/sbt.boot.properties" -> file

View File

@ -22,7 +22,7 @@ object Util {
lazy val javaOnlySettings: Seq[Setting[_]] = Seq( lazy val javaOnlySettings: Seq[Setting[_]] = Seq(
// crossPaths := false, // crossPaths := false,
// compileOrder := CompileOrder.JavaThenScala, // compileOrder := CompileOrder.JavaThenScala,
unmanagedSourceDirectories in Compile := Seq((javaSource in Compile).value) Compile / unmanagedSourceDirectories := Seq((Compile / javaSource).value)
) )
lazy val baseScalacOptions = Seq( lazy val baseScalacOptions = Seq(
@ -131,7 +131,7 @@ object Util {
def excludePomArtifact(artifactId: String) = (artifactId startsWith "compiler-bridge") def excludePomArtifact(artifactId: String) = (artifactId startsWith "compiler-bridge")
val testExclusive = tags in test += ((ExclusiveTest, 1)) val testExclusive = test / tags += (ExclusiveTest, 1)
// TODO: replace with Tags.exclusive after 0.12.0 // TODO: replace with Tags.exclusive after 0.12.0
val testExclusiveRestriction = Tags.customLimit { (tags: Map[Tags.Tag, Int]) => val testExclusiveRestriction = Tags.customLimit { (tags: Map[Tags.Tag, Int]) =>
@ -184,9 +184,9 @@ object Licensed {
def settings: Seq[Setting[_]] = Seq( def settings: Seq[Setting[_]] = Seq(
notice := (baseDirectory.value / "NOTICE"), notice := (baseDirectory.value / "NOTICE"),
unmanagedResources in Compile ++= notice.value +: extractLicenses.value, Compile / unmanagedResources ++= notice.value +: extractLicenses.value,
extractLicenses := extractLicenses0( extractLicenses := extractLicenses0(
(baseDirectory in ThisBuild).value, (ThisBuild / baseDirectory).value,
notice.value, notice.value,
streams.value streams.value
) )

View File

@ -1 +1 @@
sbt.version=1.4.9 sbt.version=1.5.1

View File

@ -9,5 +9,5 @@ addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.5.1")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "3.0.2") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "3.0.2")
addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.14") addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.14")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9") addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1")
addSbtPlugin("com.swoval" % "sbt-java-format" % "0.3.1") addSbtPlugin("com.swoval" % "sbt-java-format" % "0.3.1")