Search Gradle plugins

Version 2.0.1

Created 08 December 2022.

Gradle plugin adding a task to run a Waterfall proxy

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects