mirror of https://github.com/sbt/sbt.git
Should now be fine with 2.12.0-RC2
This commit is contained in:
parent
4b14215c33
commit
d66f21636f
|
|
@ -204,8 +204,7 @@ lazy val core = crossProject
|
|||
)
|
||||
.jsSettings(
|
||||
libraryDependencies ++= Seq(
|
||||
"org.scala-js" %%% "scalajs-dom" % "0.9.1",
|
||||
"be.doeraene" %%% "scalajs-jquery" % "0.9.0"
|
||||
"org.scala-js" %%% "scalajs-dom" % "0.9.1"
|
||||
)
|
||||
)
|
||||
|
||||
|
|
@ -469,7 +468,10 @@ lazy val web = project
|
|||
.settings(
|
||||
libraryDependencies ++= {
|
||||
if (scalaBinaryVersion.value == "2.11")
|
||||
Seq("com.github.japgolly.scalajs-react" %%% "core" % "0.9.0")
|
||||
Seq(
|
||||
"be.doeraene" %%% "scalajs-jquery" % "0.9.0",
|
||||
"com.github.japgolly.scalajs-react" %%% "core" % "0.9.0"
|
||||
)
|
||||
else
|
||||
Seq()
|
||||
},
|
||||
|
|
|
|||
|
|
@ -107,7 +107,8 @@ object IvyXml {
|
|||
.find(_.label == "info")
|
||||
.toRightDisjunction("Info not found")
|
||||
|
||||
(module, version) <- info(infoNode)
|
||||
modVer <- info(infoNode)
|
||||
(module, version) = modVer
|
||||
|
||||
dependenciesNodeOpt = node.children
|
||||
.find(_.label == "dependencies")
|
||||
|
|
|
|||
Loading…
Reference in New Issue