Search Gradle plugins

io.jooby.run

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 3.0.0.M5

3.0.0.M5

Created 25 March 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.0.M5"
}

See also:

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