搜索 Gradle 插件

版本 0.0.4 (最新版本)

0.0.4

创建于 2024年7月7日。

此 Gradle 插件将重新映射您的 NMS 项目。

使用 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"

了解如何将插件应用到子项目中