forked from TomasMikula/libretto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
266 lines (236 loc) · 6.81 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
resolvers += Resolver.mavenCentral
ThisBuild / scalaVersion := "3.2.2"
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.15"
val ZioVersion = "2.0.6"
val commonScalacOptions =
Seq(
"-deprecation",
"-Ykind-projector:underscores",
)
lazy val lambda = project
.in(file("lambda"))
.settings(
name := "libretto-lambda",
scalacOptions ++= commonScalacOptions,
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % ScalatestVersion % Test,
),
)
lazy val core = project
.in(file("core"))
.dependsOn(lambda)
.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" % "0.4.2",
"dev.zio" %% "zio-http" % "0.0.4",
),
)
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 root = project
.in(file("."))
.settings(
publish / skip := true,
)
.aggregate(
lambda,
core,
testing,
coreTests,
stream,
examples,
mashup,
mashupExamples,
librettoZio,
)
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 += "-Ykind-projector", // so that we can use '*' placeholder in the tutorial
mdocIn := file("tutorial"),
mdocVariables := Map(
"SCALA_VERSION" -> (ThisBuild / scalaVersion).value,
),
laikaSite := {
import cats.effect.IO
import cats.effect.unsafe.implicits.global
import laika.api.Transformer
import laika.format.{HTML, Markdown}
import laika.helium.Helium
import laika.helium.config.TextLink
import laika.io.implicits._
import laika.markdown.github.GitHubFlavor
import laika.parse.code.SyntaxHighlighting
import laika.theme.Theme
// add a dependency on mdoc
mdoc.toTask("").value
val srcDir = mdocOut.value
val tgtDir = target.value / "laika-site"
Transformer
.from(Markdown)
.to(HTML)
.withRawContent // support html content in input markdown documents
.using(GitHubFlavor, SyntaxHighlighting)
.parallel[IO]
.withTheme(
Helium.defaults
.site.topNavigationBar(
homeLink = TextLink.external("https://github.com/TomasMikula/libretto", "GitHub"),
)
// Change the code font, since Helium's default "Fira Code" lacks some symbols used in tutorial
// and the fallback font is not monospace. See https://github.com/planet42/Laika/issues/218.
.all.fontFamilies(
body = "Lato", // just repeating the default
headlines = "Lato", // just repeating the default
code = "Menlo",
)
.build
)
.build
.use { transformer =>
transformer
.fromDirectory(srcDir)
.toDirectory(tgtDir)
.transform
}
.unsafeRunSync()
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
},
)