Search Gradle plugins

Version 0.0.1 (latest)

0.0.1

Created 24 May 2024.

Utilities for Paper Plugin development.

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.blutmondgilde.paper-utils") version "0.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.blutmondgilde:PaperUtils:0.0.1")
      }
    }
    
    apply(plugin = "de.blutmondgilde.paper-utils")
  • Applying plugins to all subprojects .