-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
90 lines (63 loc) · 3.27 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
rootProject.name = "u-framework"
/* Testing */
include(":testing-library")
project(":testing-library").projectDir = file("./library/testing")
/* Utils */
include(":utils-library")
project(":utils-library").projectDir = file("./library/utils")
/* Failure */
include(":failure-library")
project(":failure-library").projectDir = file("./library/failure")
/* Telemetry */
/* Diagnostic-Context */
include(":diagnostic-context-library")
project(":diagnostic-context-library").projectDir = file("./library/telemetry/diagnostic/context")
include(":diagnostic-context-extension-library")
project(":diagnostic-context-extension-library").projectDir = file("./library/telemetry/diagnostic/context/extension")
/* Logging */
include(":logging-api-library")
project(":logging-api-library").projectDir = file("./library/telemetry/logging/api")
include(":logging-formatter-json-library")
project(":logging-formatter-json-library").projectDir = file("./library/telemetry/logging/formatter/json")
include(":logging-slf4j-library")
project(":logging-slf4j-library").projectDir = file("./library/telemetry/logging/slf4j")
/* Messaging */
include(":messaging-core-library")
project(":messaging-core-library").projectDir = file("./library/messaging/core")
include(":messaging-core-types-library")
project(":messaging-core-types-library").projectDir = file("./library/messaging/core/types")
include(":messaging-core-headers-library")
project(":messaging-core-headers-library").projectDir = file("./library/messaging/core/headers")
include(":messaging-router-library")
project(":messaging-router-library").projectDir = file("./library/messaging/router")
include(":messaging-dispatcher-library")
project(":messaging-dispatcher-library").projectDir = file("./library/messaging/dispatcher")
include(":messaging-listener-library")
project(":messaging-listener-library").projectDir = file("./library/messaging/listener")
include(":messaging-publisher-library")
project(":messaging-publisher-library").projectDir = file("./library/messaging/publisher")
include(":messaging-dead-letter-channel-library")
project(":messaging-dead-letter-channel-library").projectDir = file("./library/messaging/channels/deadletter")
include(":messaging-kafka-receiver-library")
project(":messaging-kafka-receiver-library").projectDir = file("./library/messaging/transport/kafka/receiver")
include(":messaging-kafka-sender-library")
project(":messaging-kafka-sender-library").projectDir = file("./library/messaging/transport/kafka/sender")
/* Saga */
include(":saga-core-library")
project(":saga-core-library").projectDir = file("./library/saga/core")
include(":saga-engine-library")
project(":saga-engine-library").projectDir = file("./library/saga/engine")
/* Retry */
include(":retry-library")
project(":retry-library").projectDir = file("./library/retry")
/* Databases */
/* JDBC */
include(":jdbc-library")
project(":jdbc-library").projectDir = file("./library/jdbc")
include(":jdbc-test-library")
project(":jdbc-test-library").projectDir = file("./library/jdbc/test")
/* Event-Sourcing */
include(":event-sourcing-modeling-library")
project(":event-sourcing-modeling-library").projectDir = file("./library/eventsourcing/modeling")
include(":event-sourcing-store-library")
project(":event-sourcing-store-library").projectDir = file("./library/eventsourcing/store")