-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#326 Fix typos and prepare diagram replacement
for extended deployment documentation.
- Loading branch information
Showing
2 changed files
with
43 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,36 @@ | ||
@startuml | ||
frame "cmp deployment-context" { | ||
skinparam linetype ortho | ||
|
||
frame "cmp deployment-context" { | ||
|
||
node hscUser as "hsc's users computer" { | ||
node hscUser as "hsc's users computer" { | ||
artifact htmlfiles as "html files" | ||
artifact gradle as "build.gradle" | ||
artifact maven as "build.maven" | ||
artifact commandline as "commandline" | ||
} | ||
|
||
|
||
} | ||
|
||
|
||
node repro as "global artifact repository (e.g. maven central, bintrtay)" { | ||
node repo as "global artifact repository (e.g., Maven Central)" { | ||
artifact hscCore as "hsc-core" <<binary>> | ||
artifact hscMavenPlugin as"hsc-maven-plugin" <<binary>> | ||
artifact hscGradlePlugin as "hsc-gradle-plugin" <<binary>> | ||
artifact hscCli as " hsc-cli" <<binary>> | ||
|
||
} | ||
artifact hscMavenPlugin as "hsc-maven-plugin" <<binary>> | ||
artifact hscGradlePlugin as "hsc-gradle-plugin" <<binary>> | ||
artifact hscCli as "hsc-cli" <<binary>> | ||
|
||
hscMavenPlugin -up-> hscCore | ||
hscGradlePlugin -up-> hscCore | ||
hscCli -up-> hscCore | ||
} | ||
|
||
node hscd as "hsc deployment" { | ||
node hscd as "hsc deployment" { | ||
artifact hscSrc as " hsc" <<source>> | ||
} | ||
} | ||
|
||
hscd --> repro : internet/https | ||
gradle -up[dashed]-> hscCore | ||
gradle -up[dashed]-> hscGradlePlugin | ||
maven -up[dashed]-> hscCore | ||
maven -up[dashed]-> hscMavenPlugin | ||
commandline -up[dashed]-> hscCore | ||
commandline -up[dashed]-> hscCli | ||
hscd --> repo : internet/https | ||
|
||
gradle -up[dashed]-> hscGradlePlugin | ||
maven -up[dashed]-> hscMavenPlugin | ||
commandline -up[dashed]-> hscCli | ||
} | ||
@enduml | ||
|