sbt/project/CrossDeps.scala

21 lines
729 B
Scala
Raw Normal View History

2017-04-02 21:51:11 +02:00
import sbt._
import sbt.Keys._
import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._
object CrossDeps {
import Def.setting
// The setting / .value hoop-and-loop is necessary because of the expansion of the %%% macro, which references
// other settings.
2017-05-15 15:32:53 +02:00
def fastParse = setting("com.lihaoyi" %%% "fastparse" % SharedVersions.fastParse)
2017-04-02 21:51:11 +02:00
def scalazCore = setting("org.scalaz" %%% "scalaz-core" % SharedVersions.scalaz)
2017-05-15 15:32:49 +02:00
def scalaJsDom = setting("org.scala-js" %%% "scalajs-dom" % "0.9.2")
def utest = setting("com.lihaoyi" %%% "utest" % "0.4.7")
2017-04-02 21:51:11 +02:00
def scalaJsJquery = setting("be.doeraene" %%% "scalajs-jquery" % "0.9.1")
def scalaJsReact = setting("com.github.japgolly.scalajs-react" %%% "core" % "0.9.0")
}