-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodule-graph-dark.dot
More file actions
93 lines (82 loc) · 2.57 KB
/
module-graph-dark.dot
File metadata and controls
93 lines (82 loc) · 2.57 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
// Module graph for the ARCP Java SDK (dark variant). Structurally identical
// to module-graph-light.dot; only color hex codes differ.
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="#334155",
color="#475569",
fontname="TT Commons Pro Trial",
fontsize=11,
fontcolor="#F1F5F9",
margin="0.22,0.11",
penwidth=1.0
];
edge [
fontname="TT Commons Pro Trial",
fontsize=9,
fontcolor="#94A3B8",
color="#64748B",
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="#0F172A";
color="#334155";
fontname="TT Commons Pro Trial";
fontcolor="#94A3B8";
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="#1E293B";
color="#334155";
fontname="TT Commons Pro Trial";
fontcolor="#94A3B8";
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="#94A3B8", penwidth=1.2];
Umbrella -> Client [label="api"];
Umbrella -> Runtime [label="api"];
Client -> Core [label="api"];
Runtime -> Core [label="api"];
edge [color="#475569", penwidth=1.0, style=dashed];
Jetty -> Runtime [label="implementation"];
Otel -> Core [label="api"];
Tck -> Client [label="api"];
Tck -> Runtime [label="api"];
}