Search Gradle plugins

Version 2.0.2

2.0.2

Created 23 February 2023.

Utilities for developing Paper plugins.

Add this plugin to your build using the plugins DSL:

plugins {
  id("gg.hubblemc.paper") version "2.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gg.hubblemc:gradle-plugin:2.0.2")
      }
    }
    
    apply(plugin = "gg.hubblemc.paper")
  • Applying plugins to all subprojects .