File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
src/main/java/com/structurizr/cli Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ dependencies {
26
26
27
27
implementation ' commons-cli:commons-cli:1.9.0'
28
28
29
- implementation ' org.codehaus.groovy:groovy-jsr223:3.0.22 '
29
+ implementation ' org.codehaus.groovy:groovy-jsr223:3.0.24 '
30
30
implementation ' org.jetbrains.kotlin:kotlin-scripting-jsr223:1.9.25'
31
- implementation ' org.jruby:jruby-core:9.4.8 .0'
31
+ implementation ' org.jruby:jruby-core:9.4.12 .0'
32
32
33
- def log4jVersion = ' 2.24.1 '
33
+ def log4jVersion = ' 2.24.3 '
34
34
implementation " org.apache.logging.log4j:log4j-api:${ log4jVersion} "
35
35
implementation " org.apache.logging.log4j:log4j-core:${ log4jVersion} "
36
36
implementation " org.apache.logging.log4j:log4j-jcl:${ log4jVersion} "
Original file line number Diff line number Diff line change @@ -76,7 +76,6 @@ protected Workspace loadWorkspace(String workspacePathAsString) throws Exception
76
76
77
77
} else {
78
78
StructurizrDslParser structurizrDslParser = new StructurizrDslParser ();
79
- structurizrDslParser .getFeatures ().configure (Features .ARCHETYPES , Configuration .PREVIEW_FEATURES );
80
79
structurizrDslParser .setCharacterEncoding (Charset .defaultCharset ());
81
80
82
81
if (workspacePathAsString .startsWith ("http://" ) || workspacePathAsString .startsWith ("https://" )) {
Original file line number Diff line number Diff line change @@ -123,10 +123,6 @@ public void run(String... args) throws Exception {
123
123
outputDir .mkdirs ();
124
124
125
125
if (STATIC_FORMAT .equals (format )) {
126
- if (!Configuration .PREVIEW_FEATURES ) {
127
- throw new RuntimeException ("Static site export is not available in this build - see https://docs.structurizr.com/cli for details of how to gain early access to new features" );
128
- }
129
-
130
126
log .info (" - writing static site to " + outputDir .getAbsolutePath ());
131
127
unzip (getClass ().getResourceAsStream ("/static.zip" ), outputPath );
132
128
You can’t perform that action at this time.
0 commit comments