-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.sbt
More file actions
27 lines (19 loc) · 774 Bytes
/
build.sbt
File metadata and controls
27 lines (19 loc) · 774 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
26
27
import AssemblyKeys._
assemblySettings
name := "icfp2012"
version := "0.1"
scalaVersion := "2.9.2"
resolvers ++= Seq(
"snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"releases" at "http://oss.sonatype.org/content/repositories/releases",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Scala Tools Snapshots" at "http://scala-tools.org/repo-releases"
)
libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.10.0" % "test",
"org.specs2" %% "specs2" % "1.11" % "test",
"com.typesafe.akka" % "akka-actor" % "2.0.2",
"org.scalaz" %% "scalaz-core" % "7.0-SNAPSHOT"
)
seq(Revolver.settings: _*)
test in assembly := {}