io.atomicbits.scraml
                  Owner:
                  
                    
                    Peter Rigole
                  
                
Scraml code generator plugin
https://github.com/atomicbits/scraml-gradle-plugin
Sources: https://github.com/atomicbits/scraml-gradle-plugin.git
Add this plugin to your build using the plugins DSL:
plugins {
  id("io.atomicbits.scraml") version "0.8.0-M1"
}
              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("io.atomicbits.scraml:io.atomicbits.scraml.gradle.plugin:0.8.0-M1") }It can then be applied in the precompiled script plugin:plugins { id("io.atomicbits.scraml") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.atomicbits.scraml:io.atomicbits.scraml.gradle.plugin:0.8.0-M1") } } apply(plugin = "io.atomicbits.scraml") - Applying plugins to all subprojects .