Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Jan 5, 2023
1 parent 07e0c99 commit 34cd9e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ repositories {
}

dependencies {
implementation 'com.structurizr:structurizr-core:1.16.2'
implementation 'com.structurizr:structurizr-core:1.17.0'

testImplementation 'com.structurizr:structurizr-client:1.16.2'
testImplementation 'com.structurizr:structurizr-client:1.17.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ protected void startDeploymentNodeBoundary(DeploymentView view, DeploymentNode d
writer.writeLine(
format("Deployment_Node(%s, \"%s\", $tags=\"%s\")%s {",
idOf(deploymentNode),
deploymentNode.getName() + (deploymentNode.getInstances() > 1 ? " (x" + deploymentNode.getInstances() + ")" : ""),
deploymentNode.getName() + (!"1".equals(deploymentNode.getInstances()) ? " (x" + deploymentNode.getInstances() + ")" : ""),
tagsOf(view, deploymentNode),
url
)
Expand All @@ -294,7 +294,7 @@ protected void startDeploymentNodeBoundary(DeploymentView view, DeploymentNode d
writer.writeLine(
format("Deployment_Node(%s, \"%s\", \"%s\", $tags=\"%s\")%s {",
idOf(deploymentNode),
deploymentNode.getName() + (deploymentNode.getInstances() > 1 ? " (x" + deploymentNode.getInstances() + ")" : ""),
deploymentNode.getName() + (!"1".equals(deploymentNode.getInstances()) ? " (x" + deploymentNode.getInstances() + ")" : ""),
deploymentNode.getTechnology(),
tagsOf(view, deploymentNode),
url
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ protected void startDeploymentNodeBoundary(DeploymentView view, DeploymentNode d

writer.writeLine(
format("rectangle \"%s\\n<size:10>%s</size>%s\" <<%s>> as %s%s {",
deploymentNode.getName() + (deploymentNode.getInstances() > 1 ? " (x" + deploymentNode.getInstances() + ")" : ""),
deploymentNode.getName() + (!"1".equals(deploymentNode.getInstances()) ? " (x" + deploymentNode.getInstances() + ")" : ""),
typeOf(view, deploymentNode, true),
icon,
idOf(deploymentNode),
Expand Down

0 comments on commit 34cd9e7

Please sign in to comment.