forked from kristoferB/ElvisLogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
35 lines (23 loc) · 1007 Bytes
/
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
name := """Elvis-log"""
version := "1.0"
scalaVersion := "2.11.5"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.9",
"com.typesafe.akka" %% "akka-testkit" % "2.3.9" % "test",
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3.9",
"org.scalatest" %% "scalatest" % "2.2.4" % "test")
libraryDependencies ++= Seq(
"net.databinder.dispatch" %% "dispatch-core" % "0.11.1",
"org.scala-lang.modules" %% "scala-xml" % "1.0.2",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.1",
"org.json4s" %% "json4s-native" % "3.2.11",
"org.json4s" %% "json4s-ext" % "3.2.11",
"com.chuusai" %% "shapeless" % "2.1.0")
libraryDependencies += "com.github.nscala-time" %% "nscala-time" % "1.8.0"
import ScalaxbKeys._
organization := "sekvensa.elvis"
scalaxbSettings
packageName in (Compile, scalaxb) := "sekvensa.elvis"
dispatchVersion in (Compile, scalaxb) := "0.11.1"
async in (Compile, scalaxb) := true
sourceGenerators in Compile <+= scalaxb in Compile