-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
55 lines (38 loc) · 1.39 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import SonatypeKeys._
// Turn this project into a Scala.js project by importing these settings
enablePlugins(ScalaJSPlugin)
organization := "omidb.com"
name := "dagred3-js"
version := "0.3.2"
scalaVersion := "2.11.5"
resolvers ++= Seq(Resolver.sonatypeRepo("snapshots"),
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
"bintray/non" at "http://dl.bintray.com/non/maven",
Resolver.url("scala-js-releases",
url("http://dl.bintray.com/content/scala-js/scala-js-releases"))(
Resolver.ivyStylePatterns))
persistLauncher in Compile := true
persistLauncher in Test := false
testFrameworks += new TestFramework("utest.runner.Framework")
jsDependencies ++= Seq(
"org.webjars" % "dagre-d3" % "0.3.2" / "dagre-d3.js",
"org.webjars" % "react" % "0.12.1" / "react-with-addons.js" commonJSName "React"
)
//
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "0.8.0",
"com.github.japgolly.scalajs-react" %%% "core" % "0.8.1",
"fr.iscpif" %%% "scaladget" % "0.5.0-SNAPSHOT",
"com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.8.4",
"com.github.japgolly.fork.scalaz" %%% "scalaz-core" % "7.1.1-2",
"eu.unicredit" %%% "paths-scala-js" % "0.3.2"
)
//
skip in packageJSDependencies := false
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-language:reflectiveCalls"
)
publishMavenStyle := true
pomIncludeRepository := { x => false }