Search Gradle plugins

io.jooby.openAPI

Jooby is a modern, performant and easy to use web framework for Java and Kotlin built on top of your favorite web server. The joobyRun task allows to restart your application on code changes without exiting the JVM

https://jooby.io

Sources: https://github.com/jooby-project/jooby

Version 2.11.0

2.11.0

Created 15 September 2021.

Jooby is a modern, performant and easy to use web framework for Java and Kotlin built on top of your favorite web server. The joobyRun task allows to restart your application on code changes without exiting the JVM

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.jooby.openAPI") version "2.11.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.jooby:jooby-gradle-plugin:2.11.0")
      }
    }
    
    apply(plugin = "io.jooby.openAPI")
  • Applying plugins to all subprojects .