forked from chrisdinn/brando
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
24 lines (17 loc) · 692 Bytes
/
build.sbt
File metadata and controls
24 lines (17 loc) · 692 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
name := "brando"
organization := "com.digital-achiever"
version := "1.0.0"
scalaVersion := "2.10.3"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.0",
"org.scalatest" %% "scalatest" % "2.1.0" % "test",
"com.typesafe.akka" %% "akka-testkit" % "2.3.0" % "test"
)
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
publishTo <<= version { (v: String) =>
if (v.trim.endsWith("-SNAPSHOT"))
Some(Resolver.file("Snapshots", file("../chrisdinn.github.com/snapshots/")))
else
Some(Resolver.file("Releases", file("../chrisdinn.github.com/releases/")))
}