Search Gradle plugins

Version 3.0.6

Created 27 July 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.gretty")

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.gretty"

Learn how to apply plugins to subprojects