pl.zalas.structurizr-cli
                  Owner:
                  
                    
                    Jakub Zalas
                  
                
Enables Gradle to run Structurizr CLI commands.
https://github.com/jakzal/gradle-structurizr-cli
Sources: https://github.com/jakzal/gradle-structurizr-cli.git
Version 0.0.6
Created 05 August 2020.
                Enables Gradle to run Structurizr CLI commands.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("pl.zalas.structurizr-cli") version "0.0.6"
}
              See also:
- 
                
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("pl.zalas.structurizr-cli:pl.zalas.structurizr-cli.gradle.plugin:0.0.6") }It can then be applied in the precompiled script plugin:plugins { id("pl.zalas.structurizr-cli") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pl.zalas.structurizr-cli:pl.zalas.structurizr-cli.gradle.plugin:0.0.6") } } apply(plugin = "pl.zalas.structurizr-cli") - Applying plugins to all subprojects .