diff --git a/build.gradle.kts b/build.gradle.kts index ca1986aa..9312ae90 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,7 +22,7 @@ dependencies { implementation("com.structurizr:structurizr-core:1.27.0") implementation("com.structurizr:structurizr-dsl:1.32.0") - implementation("com.structurizr:structurizr-export:1.16.1") + implementation("com.structurizr:structurizr-export:1.17.0") implementation("net.sourceforge.plantuml:plantuml:1.2023.12") diff --git a/src/test/kotlin/nl/avisi/structurizr/site/generatr/site/C4PlantUmlExporterWithElementLinksTest.kt b/src/test/kotlin/nl/avisi/structurizr/site/generatr/site/C4PlantUmlExporterWithElementLinksTest.kt index f42b9c16..b9918f1d 100644 --- a/src/test/kotlin/nl/avisi/structurizr/site/generatr/site/C4PlantUmlExporterWithElementLinksTest.kt +++ b/src/test/kotlin/nl/avisi/structurizr/site/generatr/site/C4PlantUmlExporterWithElementLinksTest.kt @@ -71,7 +71,7 @@ class C4PlantUmlExporterWithElementLinksTest { System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-1/container/") System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-2/context/") - Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") + Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") """.trimIndent() ) } @@ -118,7 +118,7 @@ class C4PlantUmlExporterWithElementLinksTest { Component(System1.Container1.Component1, "Component 1", ${'$'}techn="", ${'$'}descr="", ${'$'}tags="", ${'$'}link="") } - Rel_D(System1.Container1.Component1, System1.Container2, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") + Rel(System1.Container1.Component1, System1.Container2, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") """.trimIndent() ) } @@ -135,7 +135,7 @@ class C4PlantUmlExporterWithElementLinksTest { System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="") System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-2/context/") - Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") + Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") """.trimIndent() ) } @@ -152,7 +152,7 @@ class C4PlantUmlExporterWithElementLinksTest { System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="") System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../../system-2/context/") - Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") + Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") """.trimIndent() ) }