io.github.rancraftplayz.remapper
所有者: Ran
此插件自动化了 Spigot 的重映射过程
资源:https://github.com/PacifistMC/pacifist-remapper
使用 插件 DSL
plugins {
id("io.github.rancraftplayz.remapper") version "1.0.2"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.rancraftplayz.remapper:pacifist-remapper:1.0.2")
}
}
apply(plugin = "io.github.rancraftplayz.remapper")
使用 插件 DSL
plugins {
id "io.github.rancraftplayz.remapper" version "1.0.2"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.rancraftplayz.remapper:pacifist-remapper:1.0.2"
}
}
apply plugin: "io.github.rancraftplayz.remapper"