-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.sbt
35 lines (30 loc) · 893 Bytes
/
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
import Common.CommonSettings
import org.tmt.sbt.docs.Settings
inThisBuild(
CommonSettings
)
lazy val aggregatedProjects: Seq[ProjectReference] = Seq(
`selenium-tests`,
`docs`
)
/* ================= Root Project ============== */
lazy val `esw-ts` = project
.in(file("."))
.enablePlugins(GithubPublishPlugin)
.aggregate(aggregatedProjects: _*)
.settings(Settings.makeSiteMappings(docs))
/* ================= Paradox Docs ============== */
lazy val docs = project
.enablePlugins(ParadoxMaterialSitePlugin, TsDocPlugin)
.settings(
paradoxProperties ++= Map(
"extref.ts-docs.base_url" -> TsDocPlugin.tsDocPath.value,
"esw-version" -> ESW.Version,
"csw-version" -> CSW.Version
)
)
lazy val `selenium-tests` = project
.in(file("selenium-tests"))
.settings(
libraryDependencies ++= Dependencies.Integration.value
)