-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodule-graph-light.dot
More file actions
94 lines (83 loc) · 2.64 KB
/
module-graph-light.dot
File metadata and controls
94 lines (83 loc) · 2.64 KB
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
// Module graph for the ARCP Java SDK (light variant). Mirrors the slate
// palette in docs/diagrams/README.md. Solid arrows are `api` dependencies;
// dashed arrows are `implementation` or test-only dependencies.
digraph ModuleGraph {
rankdir=LR;
bgcolor="transparent";
compound=true;
fontname="TT Commons Pro Trial";
splines=spline;
nodesep=0.34;
ranksep=0.62;
pad="0.35,0.25";
node [
shape=box,
style="rounded,filled",
fillcolor="white",
color="#CBD5E1",
fontname="TT Commons Pro Trial",
fontsize=11,
fontcolor="#1F2937",
margin="0.22,0.11",
penwidth=1.0
];
edge [
fontname="TT Commons Pro Trial",
fontsize=9,
fontcolor="#64748B",
color="#94A3B8",
penwidth=1.1,
arrowsize=0.75,
arrowhead=vee
];
Consumer [
label=<<FONT POINT-SIZE="12"><B>Consumer app</B></FONT>>,
fillcolor="#3B82F6", color="#2563EB",
fontcolor="white", penwidth=1.4
];
subgraph cluster_published {
label=<<TABLE BORDER="0" CELLBORDER="0" CELLPADDING="0" CELLSPACING="0"><TR><TD COLSPAN="3" HEIGHT="8"></TD></TR><TR><TD WIDTH="8"></TD><TD><FONT POINT-SIZE="12"><B>Published artifacts</B></FONT></TD><TD WIDTH="8"></TD></TR></TABLE>>;
style="rounded,filled";
fillcolor="#F1F5F9";
color="#E2E8F0";
fontname="TT Commons Pro Trial";
fontcolor="#475569";
margin=14;
labeljust=l;
penwidth=1.0;
Umbrella [
label=<<FONT POINT-SIZE="12"><B>arcp</B></FONT>>,
fillcolor="#F59E0B", color="#D97706",
fontcolor="white", penwidth=1.4
];
subgraph cluster_core {
label=<<TABLE BORDER="0" CELLBORDER="0" CELLPADDING="0" CELLSPACING="0"><TR><TD COLSPAN="3" HEIGHT="8"></TD></TR><TR><TD WIDTH="8"></TD><TD><FONT POINT-SIZE="12"><B>Core trio</B></FONT></TD><TD WIDTH="8"></TD></TR></TABLE>>;
style="rounded,filled";
fillcolor="#F8FAFC";
color="#E2E8F0";
fontname="TT Commons Pro Trial";
fontcolor="#475569";
margin=12;
labeljust=l;
penwidth=1.0;
Client [label="arcp-client"];
Runtime [label="arcp-runtime"];
Core [label="arcp-core"];
{ rank=same; Client; Runtime; }
}
Jetty [label="arcp-runtime-jetty"];
Otel [label="arcp-otel"];
Tck [label="arcp-tck"];
}
Consumer -> Umbrella [label="implementation"];
edge [color="#64748B", penwidth=1.2];
Umbrella -> Client [label="api"];
Umbrella -> Runtime [label="api"];
Client -> Core [label="api"];
Runtime -> Core [label="api"];
edge [color="#CBD5E1", penwidth=1.0, style=dashed];
Jetty -> Runtime [label="implementation"];
Otel -> Core [label="api"];
Tck -> Client [label="api"];
Tck -> Runtime [label="api"];
}