mirror of https://github.com/sbt/sbt.git
commit
14b320fe21
|
|
@ -597,6 +597,9 @@ lazy val sbtIgnoredProblems = {
|
|||
exclude[DirectMissingMethodProblem]("sbt.Import.Param"),
|
||||
exclude[DirectMissingMethodProblem]("sbt.package.Param"),
|
||||
|
||||
exclude[ReversedMissingMethodProblem]("sbt.Import.SemanticSelector"),
|
||||
exclude[ReversedMissingMethodProblem]("sbt.Import.sbt$Import$_setter_$SemanticSelector_="),
|
||||
|
||||
// Dropped in favour of plain scala.Function, and its compose method
|
||||
exclude[DirectMissingMethodProblem]("sbt.package.toFn1"),
|
||||
)
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ object Dependencies {
|
|||
// sbt modules
|
||||
private val ioVersion = "1.2.0-M2"
|
||||
private val utilVersion = "1.2.0-M2"
|
||||
private val lmVersion = "1.2.0-M2"
|
||||
private val lmVersion = "1.2.0-M3"
|
||||
private val zincVersion = "1.2.0-M1"
|
||||
|
||||
private val sbtIO = "org.scala-sbt" %% "io" % ioVersion
|
||||
|
|
|
|||
|
|
@ -317,6 +317,8 @@ trait Import {
|
|||
type ScalaVersion = sbt.librarymanagement.ScalaVersion
|
||||
val ScmInfo = sbt.librarymanagement.ScmInfo
|
||||
type ScmInfo = sbt.librarymanagement.ScmInfo
|
||||
val SemanticSelector = sbt.librarymanagement.SemanticSelector
|
||||
type SemanticSelector = sbt.librarymanagement.SemanticSelector
|
||||
val SftpRepository = sbt.librarymanagement.SftpRepository
|
||||
type SftpRepository = sbt.librarymanagement.SftpRepository
|
||||
type SshBasedRepository = sbt.librarymanagement.SshBasedRepository
|
||||
|
|
|
|||
Loading…
Reference in New Issue