-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 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
29
30
31
32
33
34
name := "cpi-stats"
organization := "com.PhysicsEngine"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.10.2"
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "1.13" % "test"
)
libraryDependencies ++= Seq(
// other dependencies here
// pick and choose:
"org.scalanlp" % "breeze-math_2.10" % "0.3",
"org.scalanlp" % "breeze-learn_2.10" % "0.3",
"org.scalanlp" % "breeze-process_2.10" % "0.3",
"org.scalanlp" % "breeze-viz_2.10" % "0.3"
)
resolvers ++= Seq(
// other resolvers here
// if you want to use snapshot builds (currently 0.5-SNAPSHOT), use this.
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/releases/"
)
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies += "com.github.tototoshi" %% "scala-csv" % "1.0.0-SNAPSHOT"
initialCommands := "import com.PhysicsEngine.cpistats._"