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.2.4 (latest)
1.2.4
Created 14 November 2024.
Sunday Generator is a code generator for Sunday HTTP clients and JAX-RS server stubs in multiple languages.
Using the plugins DSL:
plugins {
id("io.outfoxx.sunday-generator") version "1.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.outfoxx.sunday:gradle-plugin:1.2.4")
}
}
apply(plugin = "io.outfoxx.sunday-generator")
Using the plugins DSL:
plugins {
id "io.outfoxx.sunday-generator" version "1.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.outfoxx.sunday:gradle-plugin:1.2.4"
}
}
apply plugin: "io.outfoxx.sunday-generator"