-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
31 lines (25 loc) · 720 Bytes
/
build.sbt
File metadata and controls
31 lines (25 loc) · 720 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
29
30
31
ThisBuild / version := "0.0.1"
ThisBuild / organization := "amillert"
ThisBuild / scalaVersion := "2.13.5"
lazy val commonADT =
project
.in(file("./src/main/scala/pl/amillert/leetcode/common/adt"))
lazy val day1 =
project
.in(file("./src/main/scala/pl/amillert/leetcode/day1"))
.dependsOn(commonADT)
lazy val day2 =
project
.in(file("./src/main/scala/pl/amillert/leetcode/day2"))
.dependsOn(commonADT)
lazy val day3 =
project
.in(file("./src/main/scala/pl/amillert/leetcode/day3"))
.dependsOn(commonADT)
lazy val day4 =
project
.in(file("./src/main/scala/pl/amillert/leetcode/day4"))
lazy val leetcode =
project
.in(file("."))
.dependsOn(day1, day2, day3, day4)