Search Gradle plugins

Version 2.0.0

Created 15 November 2022.

Gradle plugin adding a task to run a Velocity proxy

Using the plugins DSL:

plugins {
  id("xyz.jpenilla.run-velocity") version "2.0.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "xyz.jpenilla.run-velocity" version "2.0.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects