-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
33 lines (31 loc) · 1.25 KB
/
settings.gradle.kts
File metadata and controls
33 lines (31 loc) · 1.25 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
rootProject.name = "cryptax-backend"
include(
":application-spring",
":application-micronaut",
":config",
":domain",
":usecase",
":security",
":id-generator",
":in-memory-db-simple",
":cloud-datastore",
":controller",
":parser",
":email",
":health",
":price",
":cache",
":jwt")
project(":application-spring").projectDir = file("app/application-spring")
project(":application-micronaut").projectDir = file("app/application-micronaut")
project(":security").projectDir = file("adapter/primary/security")
project(":id-generator").projectDir = file("adapter/primary/id-generator")
project(":in-memory-db-simple").projectDir = file("adapter/primary/repository/in-memory-simple")
project(":cloud-datastore").projectDir = file("adapter/primary/repository/cloud-datastore")
project(":controller").projectDir = file("adapter/secondary/controller")
project(":parser").projectDir = file("adapter/secondary/parser")
project(":email").projectDir = file("adapter/primary/email")
project(":health").projectDir = file("adapter/secondary/health")
project(":price").projectDir = file("adapter/primary/price")
project(":cache").projectDir = file("adapter/secondary/cache")
project(":jwt").projectDir = file("adapter/secondary/jwt")