forked from Konstantina07/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
425 lines (346 loc) · 11.1 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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
import com.typesafe.sbt.packager.Keys.scriptClasspath
import BuildSettings._
import Dependencies._
lazy val root = Project("lila", file("."))
.enablePlugins(PlayScala, if (useEpoll) PlayNettyServer else PlayAkkaHttpServer)
.disablePlugins(if (useEpoll) PlayAkkaHttpServer else PlayNettyServer)
.dependsOn(api)
.aggregate(api)
.settings(buildSettings)
// shorter prod classpath
scriptClasspath := Seq("*")
maintainer := "contact@lichess.org"
Compile / resourceDirectory := baseDirectory.value / "conf"
// format: off
libraryDependencies ++= akka.bundle ++ playWs.bundle ++ Seq(
macwire.macros, macwire.util, play.json, jodaForms,
chess, compression, scalalib, hasher,
reactivemongo.driver, reactivemongo.kamon, maxmind, prismic, scalatags,
kamon.core, kamon.influxdb, kamon.metrics, kamon.prometheus,
scrimage, scaffeine, lettuce, uaparser
) ++ {
if (useEpoll) Seq(epoll, reactivemongo.epoll)
else Seq.empty
}
lazy val modules = Seq(
common, db, rating, user, security, hub, socket,
msg, notifyModule, i18n, game, bookmark, search,
gameSearch, timeline, forum, forumSearch, team, teamSearch,
analyse, mod, round, pool, lobby, setup,
importer, tournament, simul, relation, report, pref,
evaluation, chat, puzzle, tv, coordinate, blog,
history, video, shutup, push, appeal, mailer,
playban, insight, perfStat, irc, quote, challenge,
study, studySearch, fishnet, explorer, learn, plan,
event, coach, practice, evalCache, irwin,
activity, relay, streamer, bot, clas, swiss, storm, racer
)
lazy val moduleRefs = modules map projectToRef
lazy val moduleCPDeps = moduleRefs map { sbt.ClasspathDependency(_, None) }
lazy val api = module("api",
moduleCPDeps,
Seq(play.api, play.json, hasher, kamon.core, kamon.influxdb, lettuce, specs2) ++ reactivemongo.bundle
).settings(
Runtime / aggregate := false,
Test / aggregate := true // Test <: Runtime
) aggregate (moduleRefs: _*)
lazy val i18n = smallModule("i18n",
Seq(common, db, hub),
Seq(scalatags, specs2)
).settings(
Compile / sourceGenerators += Def.task {
MessageCompiler(
sourceDir = new File("translation/source"),
destDir = new File("translation/dest"),
dbs = "site arena emails learn activity coordinates study class contact patron coach broadcast streamer tfa settings preferences team perfStat search tourname faq lag swiss puzzle puzzleTheme challenge storm".split(' ').toList,
compileTo = (Compile / sourceManaged).value
)
}.taskValue
)
lazy val puzzle = module("puzzle",
Seq(common, memo, hub, history, db, user, rating, pref, tree, game),
reactivemongo.bundle
)
lazy val storm = module("storm",
Seq(common, memo, hub, puzzle, db, user, pref, tree),
reactivemongo.bundle
)
lazy val racer = module("racer",
Seq(common, memo, hub, puzzle, storm, db, user, pref, tree, room),
reactivemongo.bundle
)
lazy val quote = smallModule("quote",
Seq(),
Seq(play.json)
)
lazy val video = smallModule("video",
Seq(common, memo, hub, db, user),
Seq(autoconfig) ++ reactivemongo.bundle ++ macwire.bundle
)
lazy val coach = module("coach",
Seq(common, hub, db, user, security, notifyModule),
reactivemongo.bundle
)
lazy val streamer = module("streamer",
Seq(common, hub, db, user, notifyModule),
reactivemongo.bundle
)
lazy val coordinate = smallModule("coordinate",
Seq(common, db, user),
Seq(autoconfig) ++ reactivemongo.bundle ++ macwire.bundle
)
lazy val blog = module("blog",
Seq(common, memo, timeline),
Seq(prismic, specs2) ++ reactivemongo.bundle
)
lazy val evaluation = module("evaluation",
Seq(common, hub, db, user, game, analyse),
Seq(specs2) ++ reactivemongo.bundle
)
lazy val common = smallModule("common",
Seq(),
Seq(
scalalib, scalaUri, chess, autoconfig,
kamon.core, scalatags, jodaForms, scaffeine, specs2, apacheText
) ++ reactivemongo.bundle ++ flexmark.bundle
)
lazy val rating = module("rating",
Seq(common, db, memo, i18n),
reactivemongo.bundle
)
lazy val perfStat = module("perfStat",
Seq(common, db, user, game, rating),
reactivemongo.bundle
)
lazy val history = module("history",
Seq(common, db, memo, game, user),
Seq(scalatags) ++ reactivemongo.bundle
)
lazy val db = smallModule("db",
Seq(common),
Seq(hasher, scrimage) ++ reactivemongo.bundle
)
lazy val memo = smallModule("memo",
Seq(common, db),
Seq(scaffeine, autoconfig, scalatest, akka.testkit) ++ reactivemongo.bundle ++ macwire.bundle
)
lazy val search = smallModule("search",
Seq(common, hub),
playWs.bundle ++ Seq(autoconfig) ++ macwire.bundle
)
lazy val chat = module("chat",
Seq(common, db, user, security, i18n, socket),
Seq(scalatags) ++ reactivemongo.bundle
)
lazy val room = module("room",
Seq(common, socket, chat),
Seq(lettuce) ++ reactivemongo.bundle
)
lazy val timeline = module("timeline",
Seq(common, db, game, user, hub, security, relation),
reactivemongo.bundle
)
lazy val event = module("event",
Seq(common, db, memo, i18n, user),
Seq(scalatags) ++ reactivemongo.bundle
)
lazy val mod = module("mod",
Seq(common, db, user, hub, security, tournament, simul, game, analyse, evaluation, report, notifyModule, history, perfStat, irc),
reactivemongo.bundle
)
lazy val user = smallModule("user",
Seq(common, memo, db, hub, rating, socket),
Seq(hasher, specs2, autoconfig, scalaUri) ++ playWs.bundle ++ reactivemongo.bundle ++ macwire.bundle
)
lazy val game = module("game",
Seq(common, memo, db, hub, user, chat),
Seq(compression, specs2) ++ reactivemongo.bundle
)
lazy val gameSearch = module("gameSearch",
Seq(common, hub, search, game),
reactivemongo.bundle
)
lazy val tv = module("tv",
Seq(common, db, hub, socket, game, round, user),
Seq(hasher) ++ reactivemongo.bundle
)
lazy val bot = module("bot",
Seq(common, db, hub, game, user, challenge, chat, socket),
reactivemongo.bundle
)
lazy val analyse = module("analyse",
Seq(common, hub, game, user, notifyModule, evalCache),
reactivemongo.bundle
)
lazy val round = module("round",
Seq(common, db, memo, hub, socket, game, user, i18n, fishnet, pref, chat, history, playban, room, irc),
Seq(scalatags, hasher, kamon.core, lettuce) ++ reactivemongo.bundle
)
lazy val pool = module("pool",
Seq(common, game, user, playban),
reactivemongo.bundle
)
lazy val activity = module("activity",
Seq(common, game, analyse, user, forum, study, pool, puzzle, tournament, swiss, practice, team),
reactivemongo.bundle
)
lazy val lobby = module("lobby",
Seq(common, db, memo, hub, socket, game, user, round, timeline, relation, playban, security, pool),
Seq(lettuce) ++ reactivemongo.bundle
)
lazy val setup = module("setup",
Seq(common, db, memo, hub, socket, game, user, lobby, pref, relation, oauth),
reactivemongo.bundle
)
lazy val importer = module("importer",
Seq(common, game, round),
reactivemongo.bundle
)
lazy val insight = module("insight",
Seq(common, game, user, analyse, relation, pref, socket, round, security),
Seq(scalatags) ++ reactivemongo.bundle
)
lazy val tournament = module("tournament",
Seq(common, hub, socket, game, round, security, chat, memo, quote, history, notifyModule, i18n, room),
Seq(scalatags, lettuce, specs2) ++ reactivemongo.bundle
)
lazy val swiss = module("swiss",
Seq(common, hub, socket, game, round, security, chat, memo, quote, i18n, room),
Seq(scalatags, lettuce) ++ reactivemongo.bundle
)
lazy val simul = module("simul",
Seq(common, hub, socket, game, round, chat, memo, quote, room),
Seq(lettuce) ++ reactivemongo.bundle
)
lazy val fishnet = module("fishnet",
Seq(common, game, analyse, db, evalCache),
Seq(lettuce, specs2) ++ reactivemongo.bundle
)
lazy val irwin = module("irwin",
Seq(common, db, user, game, tournament, mod),
reactivemongo.bundle
)
lazy val oauth = smallModule("oauth",
Seq(common, db, user),
Seq(autoconfig) ++ reactivemongo.bundle ++ macwire.bundle
)
lazy val security = module("security",
Seq(common, hub, db, user, i18n, irc, oauth, mailer),
Seq(maxmind, hasher, uaparser, specs2) ++ reactivemongo.bundle
)
lazy val shutup = module("shutup",
Seq(common, db, hub, game, relation),
Seq(specs2) ++ reactivemongo.bundle
)
lazy val challenge = module("challenge",
Seq(common, db, hub, setup, game, relation, pref, socket, room, msg),
Seq(scalatags, lettuce, specs2) ++ reactivemongo.bundle
)
lazy val study = module("study",
Seq(common, db, hub, socket, game, round, importer, notifyModule, relation, evalCache, explorer, i18n, room),
Seq(scalatags, lettuce, specs2) ++ reactivemongo.bundle
)
lazy val relay = module("relay",
Seq(common, study),
Seq(scalaUri) ++ reactivemongo.bundle
)
lazy val studySearch = module("studySearch",
Seq(common, hub, study, search),
reactivemongo.bundle
)
lazy val learn = smallModule("learn",
Seq(common, db, user),
Seq(autoconfig) ++ reactivemongo.bundle
)
lazy val evalCache = module("evalCache",
Seq(common, db, user, security, socket, tree),
reactivemongo.bundle
)
lazy val practice = module("practice",
Seq(common, db, memo, user, study),
reactivemongo.bundle
)
lazy val playban = module("playban",
Seq(common, db, game, msg, chat),
reactivemongo.bundle
)
lazy val push = module("push",
Seq(common, db, user, game, challenge, msg),
Seq(googleOAuth) ++ reactivemongo.bundle
)
lazy val irc = smallModule("irc",
Seq(common, hub, user),
Seq(autoconfig) ++ reactivemongo.bundle ++ macwire.bundle
)
lazy val mailer = module("mailer",
Seq(common, user),
reactivemongo.bundle ++ Seq(scalatags, hasher, play.mailer)
)
lazy val plan = module("plan",
Seq(common, user),
Seq(specs2) ++ reactivemongo.bundle
)
lazy val relation = module("relation",
Seq(common, db, memo, hub, user, game, pref),
reactivemongo.bundle
)
lazy val pref = module("pref",
Seq(common, db, user),
Seq(macwire.util) ++ reactivemongo.bundle
)
lazy val msg = module("msg",
Seq(common, db, user, hub, relation, security, shutup, notifyModule, chat),
reactivemongo.bundle
)
lazy val forum = module("forum",
Seq(common, db, user, security, hub, mod, notifyModule),
reactivemongo.bundle
)
lazy val forumSearch = module("forumSearch",
Seq(common, hub, forum, search),
reactivemongo.bundle
)
lazy val team = module("team",
Seq(common, memo, db, user, forum, security, hub, notifyModule),
reactivemongo.bundle
)
lazy val teamSearch = module("teamSearch",
Seq(common, hub, team, search),
reactivemongo.bundle
)
lazy val clas = module("clas",
Seq(common, memo, db, user, security, msg, history, puzzle),
reactivemongo.bundle ++ Seq(bloomFilter)
)
lazy val bookmark = module("bookmark",
Seq(common, memo, db, hub, user, game),
reactivemongo.bundle
)
lazy val report = module("report",
Seq(common, db, user, game, security, playban),
reactivemongo.bundle
)
lazy val appeal = module("appeal",
Seq(common, db, user),
reactivemongo.bundle
)
lazy val explorer = module("explorer",
Seq(common, db, game, importer),
reactivemongo.bundle
)
lazy val notifyModule = module("notify",
Seq(common, db, game, user, hub, relation),
reactivemongo.bundle
)
lazy val tree = smallModule("tree",
Seq(common),
Seq()
)
lazy val socket = smallModule("socket",
Seq(common, hub, memo, tree),
Seq(lettuce) ++ macwire.bundle
)
lazy val hub = smallModule("hub",
Seq(common),
Seq(scaffeine, macwire.util)
)