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.1.0-beta.16"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.outfoxx.sunday:gradle-plugin:1.1.0-beta.16")
      }
    }
    
    apply(plugin = "io.outfoxx.sunday-generator")
  • Applying plugins to all subprojects .