-
Notifications
You must be signed in to change notification settings - Fork 164
/
settings.gradle
30 lines (26 loc) · 1.17 KB
/
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
25
26
27
28
29
30
rootProject.name = 'clean-architecture-example'
include ':config'
include ':domain'
include ':usecase'
include ':jug'
include ':uuid'
include ':in-memory-db-simple'
include ':in-memory-db-hazelcast'
include ':encoder-sha256'
include ':controller'
//include ':spring-controller'
//include ':vertx-controller'
include ':manual-app'
include ':spring-app'
include ':vertx-app'
project(":encoder-sha256").projectDir = file("adapter/encoder/sha256")
project(":jug").projectDir = file("adapter/id-generator/jug")
project(":uuid").projectDir = file("adapter/id-generator/uuid")
project(":in-memory-db-simple").projectDir = file("adapter/repository/in-memory-simple")
project(":in-memory-db-hazelcast").projectDir = file("adapter/repository/in-memory-hazelcast")
project(":controller").projectDir = file("adapter/controller")
//project(":spring-controller").projectDir = file("adapter/controller/spring-controller")
//project(":vertx-controller").projectDir = file("adapter/controller/vertx-controller")
project(":manual-app").projectDir = file("application/manual-app")
project(":spring-app").projectDir = file("application/spring-app")
project(":vertx-app").projectDir = file("application/vertx-app")