forked from hseeberger/akka-http-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (29 loc) · 1.05 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
lazy val akkaHttpJson = project
.copy(id = "akka-http-json")
.in(file("."))
.aggregate(akkaHttpPlayJson, akkaHttpJson4s, akkaHttpUpickle, akkaHttpCirce, akkaHttpArgonaut)
.enablePlugins(GitVersioning)
lazy val akkaHttpArgonaut = project
.copy(id = "akka-http-argonaut")
.in(file("akka-http-argonaut"))
.enablePlugins(AutomateHeaderPlugin)
lazy val akkaHttpCirce = project
.copy(id = "akka-http-circe")
.in(file("akka-http-circe"))
.enablePlugins(AutomateHeaderPlugin)
lazy val akkaHttpJson4s = project
.copy(id = "akka-http-json4s")
.in(file("akka-http-json4s"))
.enablePlugins(AutomateHeaderPlugin)
lazy val akkaHttpUpickle = project
.copy(id = "akka-http-upickle")
.in(file("akka-http-upickle"))
.enablePlugins(AutomateHeaderPlugin)
lazy val akkaHttpPlayJson = project
.copy(id = "akka-http-play-json")
.in(file("akka-http-play-json"))
.enablePlugins(AutomateHeaderPlugin)
name := "akka-http-json"
unmanagedSourceDirectories in Compile := Vector.empty
unmanagedSourceDirectories in Test := Vector.empty
publishArtifact := false