Search Gradle plugins

Version 1.0.8

Created 16 September 2021.

A Bukkit mixin development framework

Using the plugins DSL:

plugins {
  id("cn.apisium.papershelled") version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("cn.apisium.papershelled:cn.apisium.papershelled:1.0.8")
  }
}

apply(plugin = "cn.apisium.papershelled")

Using the plugins DSL:

plugins {
  id "cn.apisium.papershelled" version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "cn.apisium.papershelled:cn.apisium.papershelled:1.0.8"
  }
}

apply plugin: "cn.apisium.papershelled"

Learn how to apply plugins to subprojects