Search Gradle plugins

Version 3.0.1

Created 02 December 2019.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.gretty")

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.gretty"

Learn how to apply plugins to subprojects