com.undefinedcreation.mapper
Owner: Creation
This gradle plugin will remapped you NMS projects.
http://discord.undefinedcreation.com/
Sources: https://github.com/UndefinedCreation/UndefinedRemapper
Version 0.0.4 (latest)
0.0.4
Created 07 July 2024.
This gradle plugin will remapped you NMS projects.
Using the plugins DSL:
plugins {
id("com.undefinedcreation.mapper") version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.undefinedcreation:UndefinedRemapper:0.0.4")
}
}
apply(plugin = "com.undefinedcreation.mapper")
Using the plugins DSL:
plugins {
id "com.undefinedcreation.mapper" version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.undefinedcreation:UndefinedRemapper:0.0.4"
}
}
apply plugin: "com.undefinedcreation.mapper"