-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (20 loc) · 912 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
26
27
28
name := "Xsystem"
version := "1.0"
resolvers ++= Seq(
"Sonatype Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases",
"Fabricator" at "http://dl.bintray.com/biercoff/Fabricator"
)
libraryDependencies ++= Seq(
"org.scala-saddle" %% "saddle-core" % "1.3.+"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5.3",
"com.typesafe.akka" %% "akka-testkit" % "2.5.3" % Test
)
libraryDependencies ++= Seq("com.roundeights" %% "hasher" % "1.2.0")
libraryDependencies += "org.apache.commons" % "commons-math3" % "3.3"
libraryDependencies += "org.sameersingh.scalaplot" % "scalaplot" % "0.0.4"
libraryDependencies += "com.github.azakordonets" % "fabricator_2.11" % "2.1.4"
libraryDependencies += "com.github.tototoshi" % "scala-csv_2.10" % "1.3.4"
scalaVersion := "2.11.1"