-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve coloring and added component overview diagram.
- Loading branch information
Showing
5 changed files
with
171 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
@startuml | ||
|
||
skinparam component { | ||
BackgroundColor #f8f8f8 | ||
BorderColor #a0a0a0 | ||
BackgroundColor<<Main>> #FFFF00 | ||
BorderColor black | ||
FontName Arial Unicode MS | ||
FontSize 20 | ||
ArrowFontName Arial Unicode MS | ||
ArrowFontSize 18 | ||
} | ||
|
||
skinparam classFontSize 24 | ||
skinparam classAttributeIconSize 0 | ||
skinparam defaultFontSize 20 | ||
|
||
skinparam ArrowColor black | ||
skinparam ArrowThickness 2 | ||
|
||
hide circle | ||
|
||
skinparam componentStyle uml2 | ||
|
||
component "Anwendung" <<component>> as anwendung { | ||
artifact anwendung-1.0.0.war <<artifact>> as war { | ||
} | ||
} | ||
|
||
component "Fachkomponente" <<component>> as fachkomponente { | ||
artifact fachlogik-1.0.0.jar <<artifact>> as jar { | ||
} | ||
} | ||
|
||
component " org.apache.commons:commons-lang3 " <<component>> as library { | ||
artifact commons-lang3-3.12.jar <<artifact>> as lang { | ||
} | ||
} | ||
|
||
anwendung .up.> library : " <<use>>" | ||
|
||
note "Artefakt" as artefact | ||
note "Komponente" as component | ||
note "Schnittstelle" as schnittstelle | ||
note "Implementierung" as Implementierung | ||
note "Aufruf" as Use | ||
note "gerichtete Abhängigkeit" as Dependency | ||
|
||
circle " \t\t\t Fassade " as fassade | ||
circle "RestApi " as api | ||
|
||
|
||
anwendung ..> fassade : " <<use>>" | ||
fassade -- fachkomponente | ||
|
||
anwendung .down. Use | ||
fassade .up. Use | ||
|
||
api .up. schnittstelle | ||
library .up. component | ||
lang .left. artefact | ||
|
||
anwendung -up- api : " " | ||
api .down. Implementierung | ||
anwendung .right. Implementierung | ||
|
||
anwendung .up. Dependency | ||
library .down. Dependency | ||
|
||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters