This repository was archived by the owner on Aug 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
41 lines (35 loc) · 1.2 KB
/
build.sbt
File metadata and controls
41 lines (35 loc) · 1.2 KB
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
// format: off
val scala33 = "3.3.6"
val junitInterfaceVersion = "0.11"
val upickleVersion = "3.3.1"
val sporesVersion = "0.2.0"
ThisBuild / organization := "com.jspenger"
ThisBuild / organizationName := "Jonas Spenger"
ThisBuild / description := "Durable and fault tolerant computation library for Scala 3 with workflows and futures."
ThisBuild / licenses := List("Apache-2.0" -> new URL("https://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / scalaVersion := scala33
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / developers := List(
Developer(
id = "jspenger",
name = "Jonas Spenger",
email = "@jonasspenger",
url = url("https://github.com/jspenger")
)
)
// format: on
lazy val root = project
.in(file("durable-root"))
.settings(
name := "durable",
libraryDependencies += "com.phaller" %% "spores3" % sporesVersion,
libraryDependencies += "com.lihaoyi" %% "upickle" % upickleVersion,
libraryDependencies += "com.novocode" % "junit-interface" % junitInterfaceVersion % Test,
)
lazy val example = project
.in(file("durable-example"))
.settings(
name := "example",
publish / skip := true,
)
.dependsOn(root)