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.0.1
3.0.1
Created 31 July 2023.
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.0.1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.jooby:jooby-gradle-plugin:3.0.1") } } apply(plugin = "io.jooby.run")
- Applying plugins to all subprojects .