-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
34 lines (26 loc) · 1.02 KB
/
build.sbt
File metadata and controls
34 lines (26 loc) · 1.02 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
34
releaseSettings
scalaVersion := "2.10.3"
organization := "com.catamorphic"
name := "github-client"
libraryDependencies ++= Seq(
"org.scalaz" % "scalaz-core_2.10" % "7.0.0",
"org.scalaz" % "scalaz-concurrent_2.10" % "7.0.0",
"com.typesafe.play" %% "play" % "2.2.1",
"com.catamorphic" %% "playz" % "0.2",
"com.damnhandy" % "handy-uri-templates" % "1.1.7"
)
publishTo := Some("catamorphic-releases" at "http://catamorphic-repository.bitnamiapp.com/artifactory/releases")
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Catamorphic Public" at "http://dl.bintray.com/catamorphic/public",
"Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/"
)
initialCommands in console :=
"""
import com.catamorphic.external.github._
import scalaz._, Scalaz._
import com.catamorphic.playz._
import scala.concurrent._, duration._
import ExecutionContext.Implicits.global
"""