io.github.patrick.remapper
Owner: Patrick Choe
Gradle plugin for remapping mojang-mapped artifact to spigot-mapped
https://github.com/patrick-choe/mojang-spigot-remapper
Sources: https://github.com/patrick-choe/mojang-spigot-remapper.git
Version 1.4.2 (latest)
1.4.2
Created 13 May 2024.
Gradle plugin for remapping mojang-mapped artifact to spigot-mapped
Using the plugins DSL:
plugins {
id("io.github.patrick.remapper") version "1.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.patrick-choe:mojang-spigot-remapper:1.4.2")
}
}
apply(plugin = "io.github.patrick.remapper")
Using the plugins DSL:
plugins {
id "io.github.patrick.remapper" version "1.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.patrick-choe:mojang-spigot-remapper:1.4.2"
}
}
apply plugin: "io.github.patrick.remapper"