forked from gvolpe/trading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
150 lines (129 loc) · 4.23 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
import Dependencies._
ThisBuild / scalaVersion := "3.1.0"
ThisBuild / version := "0.1.0"
ThisBuild / organization := "dev.profunktor"
ThisBuild / organizationName := "ProfunKtor"
ThisBuild / scalafixDependencies += Libraries.organizeImports
ThisBuild / resolvers += Resolver.sonatypeRepo("snapshots")
Compile / run / fork := true
Global / onChangedBuildSource := ReloadOnSourceChanges
Global / semanticdbEnabled := true // for metals
val commonSettings = List(
scalacOptions ++= List("-source:future"),
scalafmtOnCompile := false, // recommended in Scala 3
testFrameworks += new TestFramework("weaver.framework.CatsEffect"),
libraryDependencies ++= Seq(
Libraries.cats,
Libraries.catsEffect,
Libraries.circeCore,
Libraries.circeParser,
Libraries.circeExtras,
Libraries.ciris,
Libraries.fs2Core,
Libraries.fs2Kafka,
Libraries.http4sDsl,
Libraries.http4sMetrics,
Libraries.http4sServer,
Libraries.kittens,
Libraries.monocleCore,
Libraries.neutronCore,
Libraries.odin,
Libraries.redis4catsEffects,
Libraries.refinedCore,
Libraries.monocleLaw % Test,
Libraries.scalacheck % Test,
Libraries.weaverCats % Test,
Libraries.weaverDiscipline % Test,
Libraries.weaverScalaCheck % Test
)
)
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, core, alerts, feed, forecasts, processor, snapshots, tracing, ws, demo)
lazy val domain = (project in file("modules/domain"))
.settings(commonSettings: _*)
lazy val lib = (project in file("modules/lib"))
.settings(commonSettings: _*)
.dependsOn(domain % "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 % "compile->compile;compile->test")
lazy val forecasts = (project in file("modules/forecasts"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("forecasts"))
.dependsOn(core)
lazy val snapshots = (project in file("modules/snapshots"))
.enablePlugins(DockerPlugin)
.enablePlugins(AshScriptPlugin)
.settings(commonSettings: _*)
.settings(dockerSettings("snapshots"))
.dependsOn(core)
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)
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)
// integration tests
lazy val it = (project in file("modules/it"))
.settings(commonSettings: _*)
.dependsOn(core)
.dependsOn(domain % "compile->compile;compile->test")
.dependsOn(forecasts)
// extension demo
lazy val demo = (project in file("modules/x-demo"))
.settings(commonSettings: _*)
.dependsOn(core)
.dependsOn(domain % "compile->compile;compile->test")
addCommandAlias("runLinter", ";scalafixAll --rules OrganizeImports")