-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.sbt
32 lines (21 loc) · 905 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
29
30
31
32
import AssemblyKeys._ // put this at the top of the file
name := "breeze-examples"
version := "0.6-SNAPSHOT"
organization := "org.scalanlp"
scalaVersion := "2.10.3"
resolvers ++= Seq(
"ScalaNLP Maven2" at "http://repo.scalanlp.org/repo",
"Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
)
libraryDependencies ++= Seq(
"junit" % "junit" % "4.5" % "test",
"org.scalanlp" %% "breeze" % "0.6-SNAPSHOT",
"org.scalanlp" % "chalk" % "1.3.0" intransitive(),
"org.scalanlp" % "nak" % "1.2.0" intransitive(),
"org.scalanlp" %% "breeze-viz" % "0.5.2" exclude("org.scalanlp", "breeze_2.10")
)
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
javaOptions += "-Xmx3g"
seq(assemblySettings: _*)