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

Commit

Permalink
Upgrade dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Oct 26, 2023
1 parent b43ac61 commit 21ba3e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ repositories {
}

dependencies {
api 'com.structurizr:structurizr-client:1.26.1'
api 'com.structurizr:structurizr-import:1.5.0'
api 'com.structurizr:structurizr-client:1.27.0'
api 'com.structurizr:structurizr-import:1.6.0'

testImplementation 'org.codehaus.groovy:groovy-jsr223:3.0.16'
testImplementation 'org.codehaus.groovy:groovy-jsr223:3.0.19'
testImplementation 'org.jetbrains.kotlin:kotlin-scripting-jsr223:1.8.10'
testImplementation 'org.jruby:jruby-core:9.4.2.0'
testImplementation 'org.jruby:jruby-core:9.4.4.0'

testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.2'
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/com/structurizr/dsl/DslTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ void test_imageViews_ViaFiles() throws Exception {

ImageView mermaidView = (ImageView)workspace.getViews().getViewWithKey("mermaid");
assertEquals("diagram.mmd", mermaidView.getTitle());
assertEquals("http://localhost:8888/img/eyAiY29kZSI6ImZsb3djaGFydCBURFxuICAgIFN0YXJ0IC0tPiBTdG9wIiwgIm1lcm1haWQiOnsidGhlbWUiOiJkZWZhdWx0In19?type=png", mermaidView.getContent());
assertEquals("http://localhost:8888/img/Zmxvd2NoYXJ0IFRECiAgICBTdGFydCAtLT4gU3RvcA==?type=png", mermaidView.getContent());
assertEquals("image/png", mermaidView.getContentType());

ImageView krokiView = (ImageView)workspace.getViews().getViewWithKey("kroki");
Expand Down Expand Up @@ -942,7 +942,7 @@ void test_imageViews_ViaUrls() throws Exception {

ImageView mermaidView = (ImageView)workspace.getViews().getViewWithKey("mermaid");
assertEquals("diagram.mmd", mermaidView.getTitle());
assertEquals("http://localhost:8888/svg/eyAiY29kZSI6ImZsb3djaGFydCBURFxuICAgIFN0YXJ0IC0tPiBTdG9wIiwgIm1lcm1haWQiOnsidGhlbWUiOiJkZWZhdWx0In19", mermaidView.getContent());
assertEquals("http://localhost:8888/svg/Zmxvd2NoYXJ0IFRECiAgICBTdGFydCAtLT4gU3RvcA==", mermaidView.getContent());
assertEquals("image/svg+xml", mermaidView.getContentType());

ImageView krokiView = (ImageView)workspace.getViews().getViewWithKey("kroki");
Expand Down

0 comments on commit 21ba3e3

Please sign in to comment.