mirror of https://github.com/sbt/sbt.git
Merge pull request #8062 from eed3si9n/wip/scala-3.6.4
This commit is contained in:
commit
ef6da07433
|
|
@ -11,7 +11,7 @@ import sbt.librarymanagement.Resolver.{
|
||||||
JCenterRepository,
|
JCenterRepository,
|
||||||
JavaNet2Repository
|
JavaNet2Repository
|
||||||
}
|
}
|
||||||
import sbt.librarymanagement.{ Resolver, UnresolvedWarningConfiguration, UpdateConfiguration }
|
// import sbt.librarymanagement.{ Resolver, UnresolvedWarningConfiguration, UpdateConfiguration }
|
||||||
import sbt.librarymanagement.syntax.*
|
import sbt.librarymanagement.syntax.*
|
||||||
|
|
||||||
final class ResolutionSpec extends AnyPropSpec with Matchers {
|
final class ResolutionSpec extends AnyPropSpec with Matchers {
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@ import scala.collection.immutable.ArraySeq
|
||||||
import scala.util.{ Success, Failure }
|
import scala.util.{ Success, Failure }
|
||||||
import sbt.util.*
|
import sbt.util.*
|
||||||
import sbt.librarymanagement.{ ModuleDescriptorConfiguration as InlineConfiguration, * }
|
import sbt.librarymanagement.{ ModuleDescriptorConfiguration as InlineConfiguration, * }
|
||||||
import sbt.librarymanagement.Platform
|
|
||||||
import sbt.librarymanagement.ivy.*
|
import sbt.librarymanagement.ivy.*
|
||||||
import sbt.librarymanagement.syntax.*
|
import sbt.librarymanagement.syntax.*
|
||||||
|
|
||||||
|
|
@ -54,7 +53,6 @@ import ivyint.{
|
||||||
}
|
}
|
||||||
import sjsonnew.JsonFormat
|
import sjsonnew.JsonFormat
|
||||||
import sjsonnew.support.murmurhash.Hasher
|
import sjsonnew.support.murmurhash.Hasher
|
||||||
import sbt.librarymanagement.ModuleSettings
|
|
||||||
|
|
||||||
final class IvySbt(
|
final class IvySbt(
|
||||||
val configuration: IvyConfiguration,
|
val configuration: IvyConfiguration,
|
||||||
|
|
|
||||||
|
|
@ -139,8 +139,6 @@ import xsbti.compile.{
|
||||||
TastyFiles,
|
TastyFiles,
|
||||||
TransactionalManagerType
|
TransactionalManagerType
|
||||||
}
|
}
|
||||||
import sbt.internal.IncrementalTest
|
|
||||||
import sbt.internal.RunUtil
|
|
||||||
|
|
||||||
object Defaults extends BuildCommon {
|
object Defaults extends BuildCommon {
|
||||||
final val CacheDirectoryName = "cache"
|
final val CacheDirectoryName = "cache"
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ import Keys.*
|
||||||
object Dependencies {
|
object Dependencies {
|
||||||
// WARNING: Please Scala update versions in PluginCross.scala too
|
// WARNING: Please Scala update versions in PluginCross.scala too
|
||||||
val scala213 = "2.13.16"
|
val scala213 = "2.13.16"
|
||||||
val scala3 = "3.6.3"
|
val scala3 = "3.6.4"
|
||||||
val checkPluginCross = settingKey[Unit]("Make sure scalaVersion match up")
|
val checkPluginCross = settingKey[Unit]("Make sure scalaVersion match up")
|
||||||
val baseScalaVersion = scala3
|
val baseScalaVersion = scala3
|
||||||
def nightlyVersion: Option[String] =
|
def nightlyVersion: Option[String] =
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import complete.Parser
|
||||||
val runFoo = inputKey[Unit]("Runs Foo with passed arguments")
|
val runFoo = inputKey[Unit]("Runs Foo with passed arguments")
|
||||||
val check = taskKey[Unit]("")
|
val check = taskKey[Unit]("")
|
||||||
|
|
||||||
scalaVersion := "3.6.3"
|
scalaVersion := "3.6.4"
|
||||||
|
|
||||||
lazy val root = (project in file(".")).
|
lazy val root = (project in file(".")).
|
||||||
settings(
|
settings(
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
scalaVersion := "3.6.3"
|
scalaVersion := "3.6.4"
|
||||||
|
|
||||||
TaskKey[Unit]("willSucceed") := println("success")
|
TaskKey[Unit]("willSucceed") := println("success")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue