Search Gradle plugins

org.akhikhl.gretty

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

http://akhikhl.github.io/gretty-doc/

Version 1.1.5

1.1.5

Created 27 October 2014.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.akhikhl.gretty") version "1.1.5"
}

See also:

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