Search Gradle plugins

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"

Learn how to apply plugins to subprojects