-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
43 lines (25 loc) · 1.27 KB
/
build.sbt
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
35
36
37
38
39
40
41
42
43
///////////////////////////////////////////////////////////////////////////
//
//
// Copyright 2015 Max Amanshauser <[email protected]>
///////////////////////////////////////////////////////////////////////////////
//_* Declarations ======================================================
name := "tiabot"
version := "0.0-SNAPSHOT"
scalaVersion := "2.11.5"
resolvers += "Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"
// core
libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.1.1"
libraryDependencies += "org.scalaz" %% "scalaz-effect" % "7.1.1"
libraryDependencies += "org.scalaz" %% "scalaz-concurrent" % "7.1.1"
libraryDependencies += "org.http4s" %% "http4s-blazeserver" % "0.6.1"
libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.6.1"
libraryDependencies += "org.http4s" %% "http4s-blazeclient" % "0.6.1"
libraryDependencies += "io.argonaut" %% "argonaut" % "6.1-M4"
libraryDependencies += "org.specs2" %% "specs2" % "2.4.15" % "test"
//_* Settings ======================================================----
scalaSource in Compile <<= baseDirectory(_ / "src")
scalaSource in Test <<= baseDirectory(_ / "test")
resourceDirectory in Compile <<= baseDirectory(_ / "resources")
test in assembly := {}
enablePlugins(JavaAppPackaging)