Search Gradle plugins

Version 3.1.0

Created 11 November 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.gretty")

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.gretty"

Learn how to apply plugins to subprojects