forked from hexagontk/hexagon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
46 lines (40 loc) · 896 Bytes
/
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
rootProject.name = "hexagon"
include(
// Infrastructure
"site",
"starters",
// Utility modules
"core",
"handlers",
"http",
"http_handlers",
// Ports
"http_client",
"http_server",
"serialization",
"templates",
// Adapters
"logging_jul",
"logging_logback",
"logging_slf4j_jul",
"serialization_dsl_json",
"serialization_jackson",
"serialization_jackson_json",
"serialization_jackson_csv",
"serialization_jackson_toml",
"serialization_jackson_yaml",
"serialization_jackson_xml",
"http_client_jetty",
"http_client_jetty_ws",
"http_server_servlet",
"http_server_jetty",
"http_server_netty",
"http_server_netty_epoll",
"templates_freemarker",
"templates_pebble",
"templates_rocker",
// Testing
"http_test",
"serialization_test",
"templates_test",
)