-
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) · 689 Bytes
/
build.sbt
File metadata and controls
28 lines (24 loc) · 689 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
val scala3Version = "3.3.1"
val mainVersion = "0.0.1"
ThisBuild / version := mainVersion
ThisBuild / scalaVersion := scala3Version
ThisBuild / versionScheme := Some("early-semver")
val commonSettings = Seq(
scalaVersion := scala3Version,
organization := "org.primetalk",
libraryDependencies += "com.lihaoyi" %% "utest" % "0.8.1" % "test",
testFrameworks += new TestFramework("utest.runner.Framework"),
)
lazy val root = (project in file("."))
.aggregate(
`type-set`,
)
.settings(
name := "type-sets",
publish / skip := true,
)
lazy val `type-set` = (project in file("type-set"))
.settings(commonSettings :_*)
.settings(
name := "type-set",
)