cn.apisium.papershelled
Owner: Shirasawa
A Paper plugin mixin development framework
https://github.com/Apisium/PaperShelledGradlePlugin#readme
Sources: https://github.com/Apisium/PaperShelledGradlePlugin
Version 1.2.1 (latest)
1.2.1
Created 15 February 2022.
A Bukkit mixin development framework
Using the plugins DSL:
plugins {
id("cn.apisium.papershelled") version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("cn.apisium.papershelled:cn.apisium.papershelled:1.2.1")
}
}
apply(plugin = "cn.apisium.papershelled")
Using the plugins DSL:
plugins {
id "cn.apisium.papershelled" version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "cn.apisium.papershelled:cn.apisium.papershelled:1.2.1"
}
}
apply plugin: "cn.apisium.papershelled"