Search Gradle plugins

Version 3.0.6

Created 16 November 2022.

Contract first driven REST resource generator for Micronaut, Spring & JAX-RS

Using the plugins DSL:

plugins {
  id("io.github.saw303.restapi") version "3.0.6"
}

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.6")
  }
}

apply(plugin = "io.github.saw303.restapi")

Using the plugins DSL:

plugins {
  id "io.github.saw303.restapi" version "3.0.6"
}

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.6"
  }
}

apply plugin: "io.github.saw303.restapi"

Learn how to apply plugins to subprojects