io.jooby.openAPI
Owner: Edgar Espina
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
Sources: https://github.com/jooby-project/jooby
Version 3.5.3
3.5.3
Created 14 November 2024.
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 "3.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.jooby:jooby-gradle-plugin:3.5.3")
}
}
apply(plugin = "io.jooby.openAPI")
Using the plugins DSL:
plugins {
id "io.jooby.openAPI" version "3.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.jooby:jooby-gradle-plugin:3.5.3"
}
}
apply plugin: "io.jooby.openAPI"