-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
25 lines (22 loc) · 979 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
rootProject.name = 'OnionSeed'
include 'entities'
include 'usecases'
include 'controller'
include 'config'
include 'manual-app'
include 'spring-app'
include 'in-memory-database'
include 'in-memory-hazelcast'
include 'sha256'
include 'uuid'
include 'SimpleValidator'
project(":entities").projectDir = file("domain/entities")
project(":usecases").projectDir = file("domain/usecases")
project(":controller").projectDir = file("adapter/controller")
project(":manual-app").projectDir = file("application/manual-app")
project(":spring-app").projectDir = file("application/spring-app")
project(":in-memory-database").projectDir = file("adapter/repositories/in-memory-database")
project(":in-memory-hazelcast").projectDir = file("adapter/repositories/in-memory-hazelcast")
project(":sha256").projectDir = file("adapter/encoder/sha256")
project(":uuid").projectDir = file("adapter/id-generator/uuid")
project(":SimpleValidator").projectDir = file("adapter/validators/SimpleValidator")