-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.sbt
275 lines (242 loc) · 6.68 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
resolvers += Resolver.mavenCentral
ThisBuild / scalaVersion := "3.5.1"
ThisBuild / organization := "dev.continuously.libretto"
ThisBuild / licenses += ("MPL 2.0", url("https://opensource.org/licenses/MPL-2.0"))
ThisBuild / homepage := Some(url("https://github.com/TomasMikula/libretto"))
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/TomasMikula/libretto"),
"scm:git:[email protected]:TomasMikula/libretto.git"
)
)
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
ThisBuild / publishTo := sonatypePublishTo.value
ThisBuild / pomExtra := (
<developers>
<developer>
<id>TomasMikula</id>
<name>Tomas Mikula</name>
<url>https://continuously.dev</url>
</developer>
</developers>
)
// o - write results back to sbt
// D - show all durations
// S - show short stack traces
// F - show full stack traces
ThisBuild / Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-oDS")
// don't wait for all tests of a file before reporting
ThisBuild / Test / logBuffered := false
import ReleaseTransformations._
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
releaseStepCommand("publishSigned"),
releaseStepCommand("sonatypeReleaseAll dev.continuously"),
setNextVersion,
commitNextVersion,
pushChanges,
)
val ScalatestVersion = "3.2.16"
val ZioVersion = "2.0.15"
val ZioJsonVersion = "0.6.0"
val ZioHttpVersion = "3.0.0-RC2"
val commonScalacOptions =
Seq(
"-deprecation",
"-Xkind-projector:underscores",
)
lazy val lambda = crossProject(JVMPlatform, JSPlatform)
.in(file("lambda"))
.settings(
name := "libretto-lambda",
scalacOptions ++= commonScalacOptions,
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest" % ScalatestVersion % Test,
),
)
lazy val lambdaExamples = project
.in(file("lambda-examples"))
.dependsOn(
lambda.jvm,
)
.settings(
name := "libretto-lambda-examples",
publish / skip := true, // experimental project, do not publish
scalacOptions ++= commonScalacOptions,
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % ScalatestVersion % Test,
),
fork := true,
)
lazy val core = project
.in(file("core"))
.dependsOn(lambda.jvm)
.settings(
name := "libretto-core",
scalacOptions ++= commonScalacOptions,
)
lazy val testing = project
.in(file("testing"))
.dependsOn(core)
.settings(
name := "libretto-testing",
scalacOptions ++= commonScalacOptions,
)
lazy val testingScalatest = project
.in(file("testing-scalatest"))
.dependsOn(core, testing)
.settings(
name := "libretto-testing-scalatest",
scalacOptions ++= commonScalacOptions,
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % ScalatestVersion,
),
)
lazy val coreTests = project
.in(file("core-tests"))
.dependsOn(testingScalatest % "test->compile")
.settings(
name := "core-tests",
scalacOptions ++= commonScalacOptions,
publish / skip := true,
)
lazy val stream = project
.in(file("stream"))
.dependsOn(
core,
testingScalatest % "test->compile",
)
.settings(
name := "libretto-stream",
scalacOptions ++= commonScalacOptions,
)
lazy val examples = project
.in(file("examples"))
.dependsOn(
core,
stream,
testingScalatest % "test->compile",
)
.settings(
name := "libretto-examples",
scalacOptions ++= commonScalacOptions,
)
lazy val mashup = project
.in(file("mashup"))
.dependsOn(core)
.settings(
name := "libretto-mashup",
publish / skip := true, // experimental project, do not publish
scalacOptions ++= commonScalacOptions,
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % ZioVersion,
"dev.zio" %% "zio-json" % ZioJsonVersion,
"dev.zio" %% "zio-http" % ZioHttpVersion,
),
)
lazy val mashupExamples = project
.in(file("mashup-examples"))
.dependsOn(mashup, testingScalatest)
.settings(
name := "libretto-mashup-examples",
scalacOptions ++= commonScalacOptions,
fork := true,
publish / skip := true, // experimental project, do not publish
)
lazy val librettoZio = project
.in(file("libretto-zio"))
.dependsOn(
core,
stream,
examples % Test,
)
.settings(
name := "libretto-zio",
scalacOptions ++= commonScalacOptions,
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % ZioVersion,
"dev.zio" %% "zio-streams" % ZioVersion,
"dev.zio" %% "zio-test" % ZioVersion % Test,
"dev.zio" %% "zio-test-sbt" % ZioVersion % Test,
),
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework"),
)
lazy val typology = project
.in(file("typology"))
.dependsOn(
core,
testingScalatest % "test->compile",
)
.settings(
name := "libretto-typology",
publish / skip := true, // experimental project, do not publish
scalacOptions ++= commonScalacOptions,
fork := true,
)
lazy val kindville = crossProject(JVMPlatform, JSPlatform)
.in(file("kindville"))
.settings(
name := "kindville",
publish / skip := true, // experimental project, do not publish
scalacOptions ++= commonScalacOptions ++ Seq("-explain", "-Xcheck-macros"),
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest" % ScalatestVersion % Test,
),
)
lazy val root = project
.in(file("."))
.settings(
publish / skip := true,
)
.aggregate(
lambda.jvm,
lambda.js,
lambdaExamples,
core,
testing,
coreTests,
stream,
examples,
mashup,
mashupExamples,
librettoZio,
typology,
kindville.jvm,
kindville.js,
)
lazy val laikaSite = taskKey[File]("generates HTML from Markdown using Laika")
lazy val docsSite = taskKey[File]("generates doc site")
lazy val docs = project
.in(file("docs-project")) // must not be the same as mdocIn
.dependsOn(core)
.enablePlugins(MdocPlugin)
.settings(
scalacOptions ++= commonScalacOptions,
mdocIn := file("tutorial"),
mdocVariables := Map(
"SCALA_VERSION" -> (ThisBuild / scalaVersion).value,
),
laikaSite := {
// add a dependency on mdoc
mdoc.toTask("").value
val srcDir = mdocOut.value
val tgtDir = target.value / "laika-site"
LaikaMarkdownToHtml(srcDir.absolutePath, tgtDir.absolutePath)
tgtDir
},
docsSite := {
val scaladocDir = (core / Compile / doc).value
val laikaSiteDir = laikaSite.value
val outputDir = target.value / "docs-site"
IO.delete(outputDir)
IO.copyDirectory(scaladocDir, outputDir / "scaladoc")
IO.copyDirectory(laikaSiteDir, outputDir / "tutorial")
outputDir
},
)