Search Gradle plugins

Version 2.2.4 (latest)

Created 23 April 2024.

Gradle plugin adding a task to run a Waterfall proxy

Using the plugins DSL:

plugins {
  id("xyz.jpenilla.run-waterfall") version "2.2.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("xyz.jpenilla:run-task:2.2.4")
  }
}

apply(plugin = "xyz.jpenilla.run-waterfall")

Using the plugins DSL:

plugins {
  id "xyz.jpenilla.run-waterfall" version "2.2.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "xyz.jpenilla:run-task:2.2.4"
  }
}

apply plugin: "xyz.jpenilla.run-waterfall"

Learn how to apply plugins to subprojects