-
Notifications
You must be signed in to change notification settings - Fork 12
/
settings.gradle.kts
104 lines (83 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
pluginManagement {
repositories {
gradlePluginPortal()
jcenter()
mavenCentral()
// for Avro plugin
maven(url = "https://dl.bintray.com/gradle/gradle-plugins")
}
}
rootProject.name = "kotlin-design-patterns"
include("kommons-logging")
include("kommons-core")
include("kommons-junit-jupiter")
include("kommons-testcontainers")
include("abstract-document")
include("abstract-factory")
include("acycle-visitor")
include("adaptor")
include("ambassador")
include("api-gateway")
include("api-gateway:api-gateway-service")
include("api-gateway:image-microservice")
include("api-gateway:price-microservice")
include("async-method-invocation")
include("balking")
include("bridge")
include("builder")
include("business-delegate")
include("caching")
include("callback")
include("chain")
include("collection-pipeline")
include("command")
include("composite")
include("converter")
include("cqrs")
include("data-bus")
include("data-locality")
include("data-mapper")
include("data-transfer-object")
include("decorator")
include("delegation")
include("dirty-flag")
include("double-buffer")
include("event-aggregator")
include("event-asynchronous")
include("event-driven-architecture")
include("event-queue")
include("event-sourcing")
include("execute-around")
include("extension-objects")
include("facade")
include("factory-kit")
include("factory-method")
include("feature-toggle")
include("guarded-suspension")
include("interpreter")
include("lazy-loading")
include("retry")
include("role-object")
include("poison-pill")
include("producer-consumer")
include("promise")
include("queue-load-leveling")
include("resource-acquisition-is-initialization")
include("semaphore")
include("servant")
include("service-locator")
include("sharding")
include("singleton")
include("specification")
include("state")
include("step-builder")
include("strategy")
include("subclass-sandbox")
include("template-method")
include("thread-pool")
include("throttling")
include("tls")
include("tolerant-reader")
include("update-method")
include("value-object")
include("visitor")