Search Gradle plugins

Version 4.1.3 (latest)

Created 18 March 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.gretty:gretty:4.1.3")
  }
}

apply(plugin = "org.gretty")

Using the plugins DSL:

plugins {
  id "org.gretty" version "4.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.gretty:gretty:4.1.3"
  }
}

apply plugin: "org.gretty"

Learn how to apply plugins to subprojects