Search Gradle plugins

Version 4.1.5 (latest)

4.1.5

Created 15 July 2024.

Advanced gradle plugin for running web-apps on jetty and tomcat.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gretty") version "4.1.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gretty:gretty:4.1.5")
      }
    }
    
    apply(plugin = "org.gretty")
  • Applying plugins to all subprojects .