-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdependency-graph.dot
23 lines (21 loc) · 1.46 KB
/
dependency-graph.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
digraph "guava-parent" {
node [shape="box",style="rounded",fontname="Helvetica",fontsize="14"]
edge [fontsize="10",fontname="Helvetica"]
// Node Definitions:
"com.google.guava:guava-gwt:jar::compile"[label=<guava-gwt>]
"com.google.guava:guava:jar::compile"[label=<guava>]
"com.google.guava:guava-testlib:jar::test"[label=<guava-testlib<font point-size="10"><br/>(test)</font>>]
"com.google.guava:guava-testlib:jar:tests:test"[label=<guava-testlib<font point-size="10"><br/>(test)</font>>]
"com.google.guava:guava-tests:jar:tests:test"[label=<guava-tests<font point-size="10"><br/>(test)</font>>]
"com.google.guava:guava-testlib:jar::compile"[label=<guava-testlib>]
"com.google.guava:guava-tests:jar::compile"[label=<guava-tests>]
"com.google.guava:guava:jar::test"[label=<guava<font point-size="10"><br/>(test)</font>>]
// Edge Definitions:
"com.google.guava:guava-gwt:jar::compile" -> "com.google.guava:guava:jar::compile"
"com.google.guava:guava-gwt:jar::compile" -> "com.google.guava:guava-testlib:jar::test"
"com.google.guava:guava-gwt:jar::compile" -> "com.google.guava:guava-testlib:jar:tests:test"
"com.google.guava:guava-gwt:jar::compile" -> "com.google.guava:guava-tests:jar:tests:test"
"com.google.guava:guava-testlib:jar::compile" -> "com.google.guava:guava:jar::compile"
"com.google.guava:guava-tests:jar::compile" -> "com.google.guava:guava-testlib:jar::test"
"com.google.guava:guava-testlib:jar::test" -> "com.google.guava:guava:jar::test"
}