-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
272 lines (249 loc) · 8.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import dependencies._
import xerial.sbt.Sonatype._
import sbtcrossproject.{CrossProject, Platform}
import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}
import ProjectImplicits._
inThisBuild(
Seq(
organization := "com.clovellytech",
homepage := Some(url("https://github.com/clovellytech/http4s-modules")),
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT")),
developers := List(
Developer(
"zakpatterson",
"Zak Patterson",
"pattersonzak@gmail.com",
url("https://github.com/zakpatterson")
)
)
)
)
lazy val db = crossProject(JVMPlatform)
.in(file("./modules/db"))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(
name := "h4sm-db",
libraryDependencies ++= commonDeps ++ dbDeps ++ testDepsInTestOnly
)
lazy val testUtilCommon: CrossProject = crossProject(JVMPlatform, JSPlatform)
.addScalaTest()
.in(file("./modules/testutil/common"))
.jsConfigure(_.configs(JsTest))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-testutil-common",
libraryDependencies ++= commonDeps ++ testDeps
)
lazy val testUtilDb = crossProject(JVMPlatform)
.in(file("./modules/testutil/db"))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-testutil-db",
libraryDependencies ++= commonDeps ++ httpDeps ++ dbDeps ++ testDeps
)
.dependsOn(testUtilCommon, db)
lazy val common = crossProject(JSPlatform)
.configureJsProject("common")
.in(file("./modules/common"))
.commonSettings()
.settings(
name := "h4sm-common",
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % versions.scalajs,
"org.typelevel" %%% "simulacrum" % versions.simulacrum,
) ++ Seq(
"circe-core",
"circe-generic",
"circe-parser",
).map("io.circe" %%% _ % versions.circe),
)
lazy val authComm = crossProject(JSPlatform, JVMPlatform)
.addScalaTest()
.in(file("./modules/auth/comm"))
.jvmConfigure(_.configs(JvmTest))
.jsConfigure(_.configs(JsTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-auth-comm",
libraryDependencies ++= Seq(
"org.typelevel" %%% "simulacrum" % versions.simulacrum,
"io.github.cquiroz" %%% "scala-java-time" % versions.scalaJavaTime,
) ++ Seq(
"circe-core",
"circe-generic",
"circe-parser",
).map("io.circe" %%% _ % versions.circe)
)
.dependsOn(testUtilCommon % inTestOnly)
lazy val auth = crossProject(JVMPlatform)
.in(file("./modules/auth/server"))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-auth",
libraryDependencies ++= commonDeps ++ authDeps ++ dbDeps ++ httpDeps ++ testDepsInTestOnly
)
.dependsOn(db)
.dependsOn(testUtilDb % inTestOnly, testUtilCommon % inTestOnly)
.dependsOn(authComm % withTests)
lazy val authClient = crossProject(JSPlatform)
.configureJsProject("authClient")
.commonSettings()
.in(file("./modules/auth/client"))
.settings(
name := "h4sm-auth-client",
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % versions.scalajs,
"org.typelevel" %%% "simulacrum" % versions.simulacrum,
"io.github.cquiroz" %%% "scala-java-time" % versions.scalaJavaTime
) ++ Seq(
"circe-core",
"circe-generic",
"circe-parser",
).map("io.circe" %%% _ % versions.circe),
)
.dependsOn(common, authComm, testUtilCommon % withTests)
lazy val files = crossProject(JVMPlatform)
.in(file("./modules/files"))
.commonSettings()
.jvmConfigure(_.configs(JvmTest))
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-files",
libraryDependencies ++= commonDeps ++ dbDeps ++ httpDeps ++ testDepsInTestOnly
)
.dependsOn(db % withTests, auth % withTests, testUtilDb % withTests)
lazy val featuresServer = crossProject(JVMPlatform)
.in(file("./modules/features/server"))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-features",
mainClass in reStart := Some("h4sm.featurerequests.Server"),
libraryDependencies ++= commonDeps ++ dbDeps ++ httpDeps ++ testDepsInTestOnly
)
.dependsOn(auth % withTests, db % withTests, featuresComm % withTests, testUtilDb % inTestOnly)
lazy val featuresComm = crossProject(JVMPlatform, JSPlatform)
.addScalaTest()
.in(file("./modules/features/comm"))
.jvmConfigure(_.configs(JvmTest))
.jsConfigure(_.configs(JsTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-features-comm",
libraryDependencies ++= Seq(
"org.typelevel" %%% "simulacrum" % versions.simulacrum,
) ++ Seq(
"circe-core",
"circe-generic",
"circe-parser",
).map("io.circe" %%% _ % versions.circe)
)
.dependsOn(authComm % withTests)
lazy val featuresClient = crossProject(JSPlatform)
.configureJsProject("featuresClient")
.in(file("./modules/features/client"))
.commonSettings()
.settings(
name := "h4sm-features-client",
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % versions.scalajs,
"org.typelevel" %%% "simulacrum" % versions.simulacrum,
) ++ Seq(
"circe-core",
"circe-generic",
"circe-parser",
).map("io.circe" %%% _ % versions.circe)
)
.dependsOn(common, featuresComm % withTests, authClient, testUtilCommon % withTests)
lazy val permissions = crossProject(JVMPlatform)
.in(file("./modules/permissions"))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-permissions",
libraryDependencies ++= commonDeps ++ dbDeps ++ httpDeps ++ testDepsInTestOnly
)
.dependsOn(auth % withTests, authComm % withTests, db % withTests, testUtilDb % withTests)
lazy val store = crossProject(JVMPlatform)
.in(file("./modules/store"))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-store",
libraryDependencies ++= commonDeps ++ dbDeps ++ httpDeps ++ testDepsInTestOnly
)
.dependsOn(auth % withTests, db % withTests, permissions, files, testUtilDb % inTestOnly)
lazy val petstore = crossProject(JVMPlatform)
.in(file("./modules/petstore"))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(
name := "h4sm-petstore",
libraryDependencies ++= commonDeps ++ dbDeps ++ httpDeps ++ testDepsInTestOnly
)
.dependsOn(auth % withTests, db % withTests, permissions, files, testUtilDb % inTestOnly)
lazy val invitations = crossProject(JVMPlatform)
.in(file("./modules/invitations"))
.jvmConfigure(_.configs(JvmTest))
.commonSettings()
.settings(publishArtifact in Test := true)
.settings(
name := "h4sm-invitations",
libraryDependencies ++= commonDeps ++ dbDeps ++ httpDeps ++ testDepsInTestOnly
)
.dependsOn(auth % withTests, db % withTests, testUtilDb % withTests)
lazy val messages = crossProject(JVMPlatform)
.in(file("./modules/messages"))
.commonSettings()
.settings(
name := "h4sm-messages",
libraryDependencies ++= commonDeps ++ dbDeps ++ httpDeps ++ testDepsInTestOnly
)
.dependsOn(auth % withTests, db % withTests, testUtilDb % withTests)
lazy val docs = crossProject(JVMPlatform)
.in(file("./h4sm-docs"))
.commonSettingsNoResource()
.settings(
name := "h4sm-docs",
crossScalaVersions := Seq(scala212),
moduleName := "h4sm-docs",
mdocVariables := Map(
"VERSION" -> version.value
),
cancelable in Global := true,
skip in publish := true,
)
.enablePlugins(MdocPlugin)
.enablePlugins(DocusaurusPlugin)
.dependsOn(auth, db, testUtilDb, testUtilCommon, featuresServer, files, permissions, petstore)
lazy val exampleServer = crossProject(JVMPlatform)
.jvmConfigure(_.configs(JvmTest))
.in(file("./example-server"))
.settings(name := "example-server")
.commonSettings()
.settings(
skip in publish := true,
aggregate in reStart := false,
libraryDependencies ++= commonDeps,
)
.enablePlugins(JavaAppPackaging)
.dependsOn(auth, db, files, featuresServer, featuresComm, permissions, store, testUtilCommon, testUtilDb, invitations)
lazy val root = crossProject(JVMPlatform)
.in(file("."))
.settings(
name := "h4sm-root",
skip in publish := true,
)
.aggregate(auth, db, files, featuresServer, permissions, store, testUtilCommon, testUtilDb, invitations)