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 2.14.0

2.14.0

Created 27 April 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

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.jooby.run") version "2.14.0"
}

See also:

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