-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
33 lines (26 loc) · 1.47 KB
/
Copy pathbuild.sbt
File metadata and controls
33 lines (26 loc) · 1.47 KB
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
organization := "com.example"
name := "Voting"
version := "0.1.0.0"
scalaVersion := "2.11.4"
libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.11.3" % Test,
"net.databinder" %% "unfiltered-netty-server" % "0.8.4",
"net.databinder.dispatch" %% "dispatch-core" % "0.11.2",
"com.websudos" %% "phantom-dsl" % "1.5.4",
"com.websudos" %% "phantom-zookeeper" % "1.5.4",
"com.twitter" %% "finagle-zookeeper" % "6.24.0"
)
resolvers ++= Seq(
"jboss repo" at "http://repository.jboss.org/nexus/content/groups/public-jboss/",
"Typesafe repository snapshots" at "http://repo.typesafe.com/typesafe/snapshots/",
"Typesafe repository releases" at "http://repo.typesafe.com/typesafe/releases/",
"Sonatype repo" at "https://oss.sonatype.org/content/groups/scala-tools/",
"Sonatype releases" at "https://oss.sonatype.org/content/repositories/releases",
"Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Sonatype staging" at "http://oss.sonatype.org/content/repositories/staging",
"Java.net Maven2 Repository" at "http://download.java.net/maven/2/",
"Websudos releases" at "http://maven.websudos.co.uk/ext-release-local",
"mvn-repo" at "http://mvnrepository.com",
"Twitter Repository" at "http://maven.twttr.com"
)
testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "1")