io.outfoxx.sunday-generator
                  Owner:
                  
                    
                    Kevin Wooten
                  
                
Sunday Generator is a code generator for Sunday HTTP clients and JAX-RS server stubs in multiple languages.
https://outfoxx.github.io/sunday
Sources: https://github.com/outfoxx/sunday-generator
Version 1.1.0-alpha.9
Created 18 August 2021.
                Sunday Generator is a code generator for Sunday HTTP clients and JAX-RS server stubs in multiple languages.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.outfoxx.sunday-generator") version "1.1.0-alpha.9"
}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.outfoxx.sunday-generator:io.outfoxx.sunday-generator.gradle.plugin:1.1.0-alpha.9") }It can then be applied in the precompiled script plugin:plugins { id("io.outfoxx.sunday-generator") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.outfoxx.sunday-generator:io.outfoxx.sunday-generator.gradle.plugin:1.1.0-alpha.9") } } apply(plugin = "io.outfoxx.sunday-generator")
- Applying plugins to all subprojects .