Search Gradle plugins

Version 1.0.5

Created 30 November 2021.

Gradle plugin adding a task to run a Paper Minecraft server

Using the plugins DSL:

plugins {
  id("xyz.jpenilla.run-paper") version "1.0.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "xyz.jpenilla.run-paper" version "1.0.5"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects