io.github.saw303.restapi
Owner: Silvio Wangler
Contract first driven REST resource generator for Micronaut, Spring & JAX-RS
https://github.com/saw303/gradle-java-rest-api
Sources: https://github.com/saw303/gradle-java-rest-api
Version 3.0.25 (latest)
3.0.25
Created 01 September 2023.
Contract first driven REST resource generator for Micronaut, Spring & JAX-RS
Using the plugins DSL:
plugins {
id("io.github.saw303.restapi") version "3.0.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.saw303.restapi:gradle-java-rest-api:3.0.25")
}
}
apply(plugin = "io.github.saw303.restapi")
Using the plugins DSL:
plugins {
id "io.github.saw303.restapi" version "3.0.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.saw303.restapi:gradle-java-rest-api:3.0.25"
}
}
apply plugin: "io.github.saw303.restapi"