forked from hendrikvanantwerpen/github-relations-viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
48 lines (36 loc) · 1.36 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name := "GitHub Project Relations Visualization"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.9.1"
scalacOptions ++= Seq(
"-deprecation",
"-unchecked"
)
seq(webSettings :_*)
classpathTypes ~= (_ + "orbit")
resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
)
seq(com.github.retronym.SbtOneJar.oneJarSettings: _*)
libraryDependencies ++= Seq(
"com.github.scala-incubator.io" %% "scala-io-core" % "0.4.1",
"org.scalaz" %% "scalaz-core" % "6.0.4",
"net.van-antwerpen" %% "scala-collection-mapreduce" % "0.1.0-SNAPSHOT",
"org.scalatra" % "scalatra" % "2.1.1",
"org.scalatra" % "scalatra-akka" % "2.1.1",
"org.scalatra" % "scalatra-scalate" % "2.1.1",
"net.liftweb" %% "lift-json" % "2.5-M1",
"net.liftweb" %% "lift-json-ext" % "2.5-M1",
"ch.qos.logback" % "logback-classic" % "1.0.6" % "runtime",
"org.eclipse.jetty" % "jetty-webapp" % "8.1.7.v20120910" % "container",
"org.eclipse.jetty.orbit" % "javax.servlet" % "3.0.0.v201112011016" % "container;provided;test" artifacts (Artifact("javax.servlet", "jar", "jar")),
"org.scalatest" %% "scalatest" % "1.8" % "test",
"com.typesafe.akka" % "akka-remote" % "2.0.3"
)
mainClass := Some("nl.tudelft.courses.in4355.github_relations_viz.actors.lrApp")
fork in run := true
//connectInput in run := true
javaOptions ++=Seq(
"-XX:+UseParallelGC",
"-Xms2048m",
"-Xmx4096m"
)