Search Gradle plugins

Version 0.0.2 (latest)

0.0.2

Created 03 December 2018.

A plugin for gradle to handle a Paper Spigot server.

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.mrcrille.paperspigot-gradle") version "0.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.mrcrille:paperspigot-gradle:0.0.2")
      }
    }
    
    apply(plugin = "me.mrcrille.paperspigot-gradle")
  • Applying plugins to all subprojects .