-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (19 loc) · 722 Bytes
/
build.sbt
File metadata and controls
26 lines (19 loc) · 722 Bytes
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
name := """wikiParser"""
version := "1.0"
scalaVersion := "2.10.3"
libraryDependencies ++= Seq(
// "com.typesafe.akka" %% "akka-actor" % "2.3.3",
// "com.typesafe.akka" %% "akka-agent" % "2.3.3",
"com.typesafe.akka" %% "akka-actor" % "2.2.1",
"com.typesafe.akka" %% "akka-agent" % "2.2.1"
// ,"com.yammer.metrics" % "metrics-core" % "3.0.1"
// for scala >= 2.11.1:
// ,"org.scala-lang.modules" %% "scala-xml" % "1.0.2"
)
// "com.typesafe.akka" %% "akka-testkit" % "2.3.3",
// "org.scalatest" %% "scalatest" % "1.9.1" % "test",
// "junit" % "junit" % "4.11" % "test",
// "com.novocode" % "junit-interface" % "0.10" % "test"
//)
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")
atmosSettings