-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
55 lines (47 loc) · 1.22 KB
/
settings.gradle.kts
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
rootProject.name = "yumarket"
pluginManagement {
val kotlinVersion = "1.5.10"
val springBootVersion = "2.6.6"
val dependencyManagementVersion = "1.0.11.RELEASE"
val protobufVersion = "0.8.15" // for gRPC
plugins {
id("org.springframework.boot") version springBootVersion
id("io.spring.dependency-management") version dependencyManagementVersion
id("org.jetbrains.kotlin.plugin.allopen") version kotlinVersion
id("org.jetbrains.kotlin.plugin.noarg") version kotlinVersion
kotlin("jvm") version kotlinVersion
kotlin("plugin.spring") version kotlinVersion
id("com.google.protobuf") version protobufVersion // gRPC
}
}
// include projects
include(
"adapter",
"adapter:dao",
"adapter:kafka-consumer",
"adapter:router-command",
"adapter:router-query",
"adapter:router-common",
"adapter:elasticsearch"
)
include(
"commons",
"commons:common"
)
include(
"domain",
"domain:dynamo"
)
include(
"port",
"port:repository",
"port:client-command",
"port:client-query",
"port:service-query",
"port:service-command",
"port:event-interface"
)
include(
"independent",
"independent:grpc-interface"
)