forked from utcompling/tshrdlu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
38 lines (30 loc) · 1.44 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
name := "tshrdlu"
version := "0.1.6-SNAPSHOT"
organization := "org.reactormonk"
scalaVersion := "2.10.1"
crossPaths := false
retrieveManaged := true
resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Local Maven Repository" at Path.userHome.asFile.toURI.toURL + ".m2/repository",
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Spray Repository" at "http://repo.spray.io/"
)
libraryDependencies ++= Seq(
"org.twitter4j" % "twitter4j-core" % "3.0.3",
"org.twitter4j" % "twitter4j-stream" % "3.0.3",
"org.scalanlp" % "nak" % "1.1.1",
"com.typesafe.akka" %% "akka-actor" % "2.1.2",
"commons-codec" % "commons-codec" % "1.7",
"org.apache.commons" % "commons-compress" % "1.0",
"org.apache.lucene" % "lucene-core" % "4.2.0",
"org.apache.lucene" % "lucene-analyzers-common" % "4.2.0",
"org.apache.lucene" % "lucene-queryparser" % "4.2.0",
"de.bwaldvogel" % "liblinear" % "1.92",
"org.scalanlp" % "chalk" % "1.1.3-SNAPSHOT",
"org.scalanlp" % "nak" % "1.1.3-SNAPSHOT",
"edu.cmu.cs" % "ark-tweet-nlp" % "0.3.2",
"org.scalatest" %% "scalatest" % "1.9.1" % "test",
"io.spray" %% "spray-json" % "1.2.3"
)
//initialCommands in console := "import tshrdlu.repl._\nReplBot.setup\nprintln(\"***\")\nprintln(\"To activate repliers, call ReplBot.loadReplier(name). See Bot.scala for names.\")\nprintln(\"call ReplBot.sendTweet(text) or its overloads.\")\nprintln(\"***\")"