-
Notifications
You must be signed in to change notification settings - Fork 32
/
build.sbt
executable file
·28 lines (24 loc) · 1.07 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
name := "neuron"
scalaVersion := "2.11.4"
libraryDependencies ++= Seq(
// other dependencies here
"org.scalanlp" % "breeze_2.11" % "0.11.2",
// native libraries are not included by default. add this if you want them
// native libraries greatly improve performance, but increase jar sizes.
"org.scalanlp" % "breeze-natives_2.11" % "0.11.2",
// Logging
"org.slf4j" % "slf4j-simple" % "1.7.6",
// STM
"org.scala-stm" %% "scala-stm" % "0.7",
// Nak machine learning
// "org.scalanlp" % "nak" % "1.2.1"
"org.scalacheck" %% "scalacheck" % "1.11.3" % "test",
"org.scalatest" %% "scalatest" % "2.1.3" % "test"
)
resolvers ++= Seq(
// other resolvers here
// if you want to use snapshot builds, use this.
// "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/"
)
resolvers += Classpaths.sbtPluginReleases