io.github.rancraftplayz.remapper
Owner: Ran
This plugin automates the remapping process for spigot
Sources: https://github.com/PacifistMC/pacifist-remapper
Version 1.0.2 (latest)
1.0.2
Created 24 March 2022.
This plugin automates the remapping process for spigot
Using the plugins DSL:
plugins {
id("io.github.rancraftplayz.remapper") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.rancraftplayz.remapper:pacifist-remapper:1.0.2")
}
}
apply(plugin = "io.github.rancraftplayz.remapper")
Using the plugins DSL:
plugins {
id "io.github.rancraftplayz.remapper" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.rancraftplayz.remapper:pacifist-remapper:1.0.2"
}
}
apply plugin: "io.github.rancraftplayz.remapper"