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.15.0

Created 22 May 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.jooby:jooby-gradle-plugin:2.15.0")
  }
}

apply(plugin = "io.jooby.openAPI")

Using the plugins DSL:

plugins {
  id "io.jooby.openAPI" version "2.15.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.jooby:jooby-gradle-plugin:2.15.0"
  }
}

apply plugin: "io.jooby.openAPI"

Learn how to apply plugins to subprojects