com.undefinedcreation.mapper
所有者: Creation
此 Gradle 插件将重新映射您的 NMS 项目。
http://discord.undefinedcreation.com/
来源: https://github.com/UndefinedCreation/UndefinedRemapper
使用 plugins DSL
plugins {
id("com.undefinedcreation.mapper") version "0.0.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.undefinedcreation:UndefinedRemapper:0.0.4")
}
}
apply(plugin = "com.undefinedcreation.mapper")
使用 plugins DSL
plugins {
id "com.undefinedcreation.mapper" version "0.0.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.undefinedcreation:UndefinedRemapper:0.0.4"
}
}
apply plugin: "com.undefinedcreation.mapper"