-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (24 loc) · 684 Bytes
/
build.sbt
File metadata and controls
28 lines (24 loc) · 684 Bytes
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
ThisBuild / sonatypeProfile := "au.id.tmm"
ThisBuild / baseProjectName := "tmm-scala-plotly"
lazy val root = project
.in(file("."))
.settings(settingsForRootProject)
.settings(console := (console in Compile in core).value)
.aggregate(
core,
)
val circeVersion = "0.14.0-M1"
lazy val core = project
.in(file("core"))
.settings(settingsForSubprojectCalled("core"))
.settings(
libraryDependencies += "io.circe" %% "circe-core" % circeVersion,
)
lazy val examples = project
.in(file("examples"))
.settings(settingsForSubprojectCalled("examples"))
.settings(
publish / skip := true,
githubWorkflowArtifactUpload := false,
)
.dependsOn(core)