com.crowdproj.generator
                  Owner:
                  
                    
                    Sergey Okatov
                  
                
Code generator that generates code for CrowdProj projects in a modular style
https://github.com/crowdproj/crowdproj-code-generator
Sources: https://github.com/crowdproj/crowdproj-code-generator.git
Version 0.0.6
Created 03 May 2023.
                OpenAPI specs based code generator that generates code in a modular style used in CrowdProj projects
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.crowdproj.generator") 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("com.crowdproj.generator:com.crowdproj.generator.gradle.plugin:0.0.6") }It can then be applied in the precompiled script plugin:plugins { id("com.crowdproj.generator") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.crowdproj.generator:com.crowdproj.generator.gradle.plugin:0.0.6") } } apply(plugin = "com.crowdproj.generator") - Applying plugins to all subprojects .