-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.sbt
50 lines (45 loc) · 1.34 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
import DocSettings.*
import Utils.*
ThisBuild / publish / skip := true
ThisBuild / publishArtifact := false
/*
***********************
* Core Module *
***********************
*/
lazy val core = project
.in(file("core"))
.withId("scala-polars")
.settings(name := "scala-polars")
.enablePlugins(GhpagesPlugin, SiteScaladocPlugin)
.settings(
// unidocSourceFilePatterns := Nil,
git.remoteRepo := "[email protected]:chitralverma/scala-polars.git",
SiteScaladoc / siteSubdirName := "api/latest"
)
.settings(ProjectDependencies.dependencies)
.settings(GeneralSettings.commonSettings)
.settings(PublishingSettings.settings)
.settings(
nativeRoot := baseDirectory.value.toPath.resolveSibling("native").toFile,
inConfig(Compile)(NativeBuildSettings.settings)
)
.settings(ExtraCommands.commands)
.settings(ExtraCommands.commandAliases)
// .configureUnidoc("scala-polars API Reference")
/*
***********************
* Examples Module *
***********************
*/
lazy val examples = project
.in(file("examples"))
.withId("scala-polars-examples")
.settings(name := "scala-polars-examples")
.settings(GeneralSettings.commonSettings)
.settings(
Compile / packageBin / publishArtifact := false,
Compile / packageDoc / publishArtifact := false,
Compile / packageSrc / publishArtifact := false
)
.dependsOn(core)