Search Gradle plugins

io.outfoxx.sunday-generator

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.outfoxx.sunday-generator") version "1.3.3"
}

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.3.3")
    }
    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.3.3")
      }
    }
    
    apply(plugin = "io.outfoxx.sunday-generator")
  • Applying plugins to all subprojects .