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.0.M11
3.0.0.M11
Created 17 June 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
Using the plugins DSL:
plugins {
id("io.jooby.run") version "3.0.0.M11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.jooby:jooby-gradle-plugin:3.0.0.M11")
}
}
apply(plugin = "io.jooby.run")
Using the plugins DSL:
plugins {
id "io.jooby.run" version "3.0.0.M11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.jooby:jooby-gradle-plugin:3.0.0.M11"
}
}
apply plugin: "io.jooby.run"