-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilt.sbt
34 lines (24 loc) · 1.28 KB
/
built.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
//libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.3"
libraryDependencies += "org.scala-lang.modules" % "scala-parser-combinators_2.11" % "1.0.4"
//libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.3"
libraryDependencies += "org.scala-lang.modules" % "scala-xml_2.11" % "1.0.6"
//libraryDependencies += "jgrapht" % "jgrapht-jdk1.6" % "0.8.3" from "http://ccl.northwestern.edu/devel/jgrapht-jdk1.6-0.8.3.jar"
libraryDependencies += "org.jgrapht" % "jgrapht-core" % "1.0.0"
//libraryDependencies += "jdd" % "jdd" % "105" from "https://bitbucket.org/vahidi/jdd/downloads/jdd_105.jar"
libraryDependencies += "de.fosd.typechef" % "javabdd_repackaged" % "1.0b2"
//lazy val jbdd = ProjectRef(uri("git://github.com/martin-riedl/JavaBDD_repackaged#master"), "javabdd_repackaged")
//scalaVersion in jbdd := "2.11.8"
libraryDependencies += "javax.xml.bind" % "jaxb-api" % "2.3.1"
libraryDependencies += "org.glassfish.jaxb" % "jaxb-runtime" % "2.3.1"
lazy val commonSettings = Seq(
organization := "ftse",
version := "1.0.0",
scalaVersion := "2.11.8"
)
lazy val base = (project in file(".")).
//dependsOn(jbdd).
settings(commonSettings: _*).
settings(
//unmanagedJars in Compile += file("pathto/jdd_105.jar"),
name := "base"
)