-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (16 loc) · 688 Bytes
/
build.sbt
File metadata and controls
26 lines (16 loc) · 688 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
name := "akka-scala-seed"
ThisBuild / version := "1.0"
ThisBuild / scalaVersion := s"3.3.3"
ThisBuild / resolvers += "Akka library repository".at("https://repo.akka.io/maven")
// Run in a separate JVM, to make sure sbt waits until all threads have
// finished before returning.
// If you want to keep the application running while executing other
// sbt tasks, consider https://github.com/spray/sbt-revolver/
fork := true
lazy val root = Project("my-project", file("."))
.aggregate(
akkaStreamsStuff,
scalaStuff
)
lazy val akkaStreamsStuff = Project("akka-streams-stuff", file("akka-streams-stuff"))
lazy val scalaStuff = Project("scala-stuff", file("scala-stuff"))