mirror of https://github.com/sbt/sbt.git
make it compile again with sbt 0.13.6
This commit is contained in:
parent
a821b27809
commit
83a311b4af
|
|
@ -20,7 +20,7 @@ scalacOptions ++= Seq("-deprecation", "-unchecked")
|
|||
|
||||
sbt.CrossBuilding.latestCompatibleVersionMapper ~= {
|
||||
original => {
|
||||
case "0.13" => "0.13.8"
|
||||
case "0.13" => "0.13.6"
|
||||
case x => original(x)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,6 +20,10 @@ package backend
|
|||
import sbt._
|
||||
|
||||
object SbtUpdateReport {
|
||||
type OrganizationArtifactReport = {
|
||||
def modules: Seq[ModuleReport]
|
||||
}
|
||||
|
||||
def fromConfigurationReport(report: ConfigurationReport, rootInfo: sbt.ModuleID): ModuleGraph = {
|
||||
implicit def id(sbtId: sbt.ModuleID): ModuleId = ModuleId(sbtId.organization, sbtId.name, sbtId.revision)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue