Search Gradle plugins

Version 1.4.2 (latest)

Created 13 May 2024.

Gradle plugin for remapping mojang-mapped artifact to spigot-mapped

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.patrick.remapper") version "1.4.2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.patrick.remapper:io.github.patrick.remapper.gradle.plugin:1.4.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.patrick.remapper")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.patrick.remapper:io.github.patrick.remapper.gradle.plugin:1.4.2")
      }
    }
    
    apply(plugin = "io.github.patrick.remapper")
  • Applying plugins to all subprojects .