io.jooby.run
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.1.0
3.1.0
Created 13 May 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
Add this plugin to your build using the plugins DSL:
plugins {
id("io.jooby.run") version "3.1.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.jooby:jooby-gradle-plugin:3.1.0") } } apply(plugin = "io.jooby.run")
- Applying plugins to all subprojects .