Search Gradle plugins

io.github.vlsergey.spring-data-rest-utils

Gradle plug-in to generate different specifications (such as OpenAPI) from Spring Data REST entities and repositories

https://github.com/vlsergey/spring-data-rest-utils

Sources: https://github.com/vlsergey/spring-data-rest-utils.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.vlsergey.spring-data-rest-utils") version "0.40.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.vlsergey.springdatarestutils:spring-data-rest-utils:0.40.0")
      }
    }
    
    apply(plugin = "io.github.vlsergey.spring-data-rest-utils")
  • Applying plugins to all subprojects .