Skip to content

Commit

Permalink
Update structurizr-cli in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jakzal committed Apr 26, 2023
1 parent 175e2f9 commit c4195c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ The `version` property can be used To force a specific release.

```kotlin
structurizrCli {
version = "1.13.0"
version = "1.30.0"
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ class DownloadFunctionalTest : FunctionalTest {
id 'pl.zalas.structurizr-cli'
}
structurizrCli {
version = "1.13.0"
version = "1.30.0"
}
""")

execute(projectDir, "structurizrCliDownload")

assertTrue(File("${projectDir.absolutePath}/build/downloads/structurizr-cli-1.13.0.zip").exists())
assertTrue(File("${projectDir.absolutePath}/build/downloads/structurizr-cli-1.30.0.zip").exists())
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ class ExtractFunctionalTest : FunctionalTest {
id 'pl.zalas.structurizr-cli'
}
structurizrCli {
version = "1.13.0"
version = "1.30.0"
}
""")

execute(projectDir, "structurizrCliExtract")

assertTrue(File("${projectDir.absolutePath}/build/structurizr-cli/lib/structurizr-cli-1.13.0.jar").exists())
assertTrue(File("${projectDir.absolutePath}/build/structurizr-cli/lib/structurizr-cli-1.30.0.jar").exists())
}

@Test
Expand Down

0 comments on commit c4195c0

Please sign in to comment.