forked from gvolpe/trading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
240 lines (211 loc) · 8.06 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
import Dependencies._
import sbtwelcome._
ThisBuild / scalaVersion := "3.5.2"
ThisBuild / version := "0.1.0"
ThisBuild / organization := "dev.profunktor"
ThisBuild / organizationName := "ProfunKtor"
ThisBuild / evictionErrorLevel := Level.Warn
ThisBuild / resolvers := Resolver.sonatypeOssRepos("snapshots")
ThisBuild / pushRemoteCacheTo := Some(MavenCache("local-cache", file("tmp/remote-cache")))
Compile / run / fork := true
Global / onChangedBuildSource := ReloadOnSourceChanges
Global / semanticdbEnabled := true // for metals
lazy val copyJsFileTask = TaskKey[Unit]("copyJsFileTask")
def fedaLogo(scalaVersion: String, project: String) =
s"""
|${scala.Console.YELLOW}░█▀▀░█░█░█▀█░█▀▀░▀█▀░▀█▀░█▀█░█▀█░█▀█░█░░░░░█▀▀░█░█░█▀▀░█▀█░▀█▀░░░░░█▀▄░█▀▄░▀█▀░█░█░█▀▀░█▀█░░░█▀█░█▀▄░█▀▀░█░█░▀█▀░▀█▀░█▀▀░█▀▀░▀█▀░█░█░█▀▄░█▀▀
|${scala.Console.RED}░█▀▀░█░█░█░█░█░░░░█░░░█░░█░█░█░█░█▀█░█░░░░░█▀▀░▀▄▀░█▀▀░█░█░░█░░▄▄▄░█░█░█▀▄░░█░░▀▄▀░█▀▀░█░█░░░█▀█░█▀▄░█░░░█▀█░░█░░░█░░█▀▀░█░░░░█░░█░█░█▀▄░█▀▀
|${scala.Console.CYAN}░▀░░░▀▀▀░▀░▀░▀▀▀░░▀░░▀▀▀░▀▀▀░▀░▀░▀░▀░▀▀▀░░░▀▀▀░░▀░░▀▀▀░▀░▀░░▀░░░░░░▀▀░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░░░▀░▀░▀░▀░▀▀▀░▀░▀░▀▀▀░░▀░░▀▀▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀
|
|Powered by ${scala.Console.YELLOW}Scala ${scalaVersion}${scala.Console.RESET}
|
|Get the book at: ${scala.Console.YELLOW} https://leanpub.com/feda${scala.Console.RESET}
|
|Project: ${scala.Console.CYAN}$project ${scala.Console.RESET}
""".stripMargin
logo := fedaLogo(scalaVersion.value, "root")
usefulTasks := List(
UsefulTask("lint", "Run scalafmtAll and scalafix OrganizeImports rule"),
UsefulTask("smoke", "Run smoke tests (smokey)")
)
val commonSettings = List(
scalafmtOnCompile := false, // recommended in Scala 3
logo := fedaLogo(scalaVersion.value, name.value),
testFrameworks += new TestFramework("weaver.framework.CatsEffect"),
libraryDependencies ++= List(
CompilerPlugins.zerowaste,
Libraries.cats.value,
Libraries.catsEffect.value,
Libraries.circeCore.value,
Libraries.circeParser.value,
Libraries.cirisCore.value,
Libraries.cirisRefined.value,
Libraries.fs2Core.value,
Libraries.kittens.value,
Libraries.ip4sCore.value,
Libraries.log4catsNoop,
Libraries.monocleCore.value,
Libraries.catsLaws % Test,
Libraries.monocleLaw % Test,
Libraries.scalacheck % Test,
Libraries.weaverCats % Test,
Libraries.weaverDiscipline % Test,
Libraries.weaverScalaCheck % Test
)
)
val commonJvmSettings = List(
libraryDependencies ++= List(
Libraries.fs2Kafka,
Libraries.http4sDsl,
Libraries.http4sMetrics,
Libraries.http4sServer,
Libraries.ironCore.value,
Libraries.ironCats.value,
Libraries.ironCirce.value,
Libraries.neutronCore,
Libraries.odin,
Libraries.redis4catsEffects
)
)
def dockerSettings(name: String) = List(
Docker / packageName := s"trading-$name",
dockerBaseImage := "jdk17-curl:latest",
dockerExposedPorts ++= List(8080),
makeBatScripts := Nil,
dockerUpdateLatest := true
)
lazy val root = (project in file("."))
.settings(
name := "trading-app"
)
.aggregate(lib, domain.js, domain.jvm, core, alerts, feed, forecasts, processor, snapshots, tracing, ws, demo)
lazy val domain = crossProject(JSPlatform, JVMPlatform)
.in(file("modules/domain"))
.settings(commonSettings: _*)
.jvmSettings(commonJvmSettings)
.jsSettings(
test := {},
scalacOptions := List("-scalajs")
)
lazy val lib = (project in file("modules/lib"))
.settings(commonSettings: _*)
.dependsOn(domain.jvm % "compile->compile;test->test")
lazy val core = (project in file("modules/core"))
.settings(commonSettings: _*)
.dependsOn(lib)
lazy val alerts = (project in file("modules/alerts"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("alerts"))
.dependsOn(core)
lazy val feed = (project in file("modules/feed"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("feed"))
.settings(
libraryDependencies += Libraries.scalacheck
)
.dependsOn(core)
.dependsOn(domain.jvm % "compile->compile;compile->test")
lazy val forecasts = (project in file("modules/forecasts"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("forecasts"))
.settings(
libraryDependencies ++= List(
Libraries.doobieH2,
Libraries.flyway
)
)
.dependsOn(core)
lazy val snapshots = (project in file("modules/snapshots"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("snapshots"))
.dependsOn(core)
.dependsOn(domain.jvm % "compile->compile;test->test")
lazy val processor = (project in file("modules/processor"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("processor"))
.dependsOn(core)
lazy val tracing = (project in file("modules/tracing"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("tracing"))
.settings(
libraryDependencies ++= List(
Libraries.http4sCirce,
Libraries.natchezCore,
Libraries.natchezHoneycomb
)
)
.dependsOn(core)
.dependsOn(domain.jvm % "compile->compile;test->test")
lazy val ws = (project in file("modules/ws-server"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("ws"))
.settings(
libraryDependencies ++= List(
Libraries.http4sCirce
)
)
.dependsOn(core)
lazy val webapp = (project in file("modules/ws-client"))
.enablePlugins(ScalaJSPlugin)
.settings(
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) },
scalafmtOnCompile := false,
libraryDependencies ++= List(
Libraries.circeCore.value,
Libraries.circeParser.value,
Libraries.circeRefined.value,
Libraries.monocleCore.value,
Libraries.refinedCore.value,
Libraries.refinedCats.value,
Libraries.scalajsTime.value,
Libraries.tyrian.value,
Libraries.tyrianIO.value
),
logo := fedaLogo(scalaVersion.value, name.value)
)
.dependsOn(domain.js)
// integration tests
lazy val it = (project in file("modules/it"))
.settings(commonSettings: _*)
.dependsOn(core)
.dependsOn(domain.jvm % "compile->compile;compile->test")
.dependsOn(forecasts)
// extension qa smoke tests
lazy val smokey = (project in file("modules/x-qa"))
.settings(commonSettings: _*)
.dependsOn(core, domain.jvm)
.settings(
libraryDependencies ++= List(
Libraries.http4sJdkWs
)
)
// extension demo
lazy val demo = (project in file("modules/x-demo"))
.settings(commonSettings: _*)
.dependsOn(core, forecasts, tracing)
.dependsOn(domain.jvm % "compile->compile;compile->test")
.settings(
libraryDependencies ++= List(
Libraries.circeRefined.value,
Libraries.doobiePg,
Libraries.natchezHttp4s,
Libraries.refinedCore.value,
Libraries.refinedCats.value
)
)
addCommandAlias("lint", ";scalafmtAll ;scalafixAll --rules OrganizeImports")
addCommandAlias("smoke", "smokey/test")