org.gretty
Owner: Brett Randall
Advanced gradle plugin for running web-apps on jetty and tomcat.
https://gretty-gradle-plugin.github.io/gretty-doc/
Sources: https://github.com/${developerId}/gretty
Version 2.2.0
2.2.0
Created 21 May 2018.
Advanced gradle plugin for running web-apps on jetty and tomcat.
Using the plugins DSL:
plugins {
id("org.gretty") version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.gretty:gretty:2.2.0")
}
}
apply(plugin = "org.gretty")
Using the plugins DSL:
plugins {
id "org.gretty" version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.gretty:gretty:2.2.0"
}
}
apply plugin: "org.gretty"