File size: 2,087 Bytes
2795186 |
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 95 96 97 98 99 |
@startuml
skinparam {
defaultFontName sans-serif
}
package org.junit.jupiter {
[junit-jupiter] as jupiter
[junit-jupiter-api] as jupiter_api
[junit-jupiter-engine] as jupiter_engine
[junit-jupiter-params] as jupiter_params
[junit-jupiter-migrationsupport] as jupiter_migration_support
}
package org.junit.vintage {
[junit-vintage-engine] as vintage_engine
}
package org.junit.platform {
[junit-platform-commons] as commons
[junit-platform-console] as console
[junit-platform-engine] as engine
[junit-platform-jfr] as jfr
[junit-platform-launcher] as launcher
[junit-platform-reporting] as reporting
[junit-platform-runner] as runner
[junit-platform-suite] as suite
[junit-platform-suite-api] as suite_api
[junit-platform-suite-commons] as suite_commons
[junit-platform-suite-engine] as suite_engine
[junit-platform-testkit] as testkit
}
package "JUnit 4" {
[junit:junit] as junit4
}
package org.opentest4j {
[opentest4j]
}
package org.apiguardian {
[apiguardian-api] as apiguardian
note bottom of apiguardian #white
All artifacts except
opentest4j and junit:junit
have a dependency on this
artifact. The edges have
been omitted from this
diagram for the sake of
readability.
endnote
}
jupiter ..> jupiter_api
jupiter ..> jupiter_params
jupiter ..> jupiter_engine
jupiter_api ....> opentest4j
jupiter_api ...> commons
jupiter_engine ...> engine
jupiter_engine ..> jupiter_api
jupiter_params ..> jupiter_api
jupiter_migration_support ..> jupiter_api
jupiter_migration_support ...> junit4
console ..> launcher
console ..> reporting
launcher ..> engine
jfr ..> launcher
engine ....> opentest4j
engine ..> commons
reporting ..> launcher
runner ..> suite_commons
runner ...> junit4
suite ..> suite_api
suite ..> suite_engine
suite_engine ..> suite_commons
suite_commons ..> launcher
suite_commons ..> suite_api
testkit ....> opentest4j
testkit ..> launcher
vintage_engine ...> engine
vintage_engine ..> junit4
@enduml
|