-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
25 lines (17 loc) · 857 Bytes
/
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
name := "ScalaBigraph"
version := "0.1-SNAPSHOT"
scalaVersion := "2.12.1"
scalacOptions += "-target:jvm-1.8"
resolvers ++= Seq(
DefaultMavenRepository,
"My bitbucket maven releases repo" at "https://bitbucket.org/eloipereira/maven-repo-releases/raw/master",
"My bitbucket maven snapshots repo" at "https://bitbucket.org/eloipereira/maven-repo-snapshots/raw/master",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/")
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-core" % "7.2.8",
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
scalacOptions += "-deprecation"
initialCommands in console := "import bigraph._, placeGraph._, linkGraph._, PlaceGraph._, LinkGraph._"
//testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "3")