Search Gradle plugins

fr.flowarg.nmsremaphelper

Owner: Flow Arg

This plugin provide some tasks to help you to export a plugin with correct mappings according to your spigot server version if you develop with a mojang mapped version of the NMS.

http://nmsremaphelper.flowarg.fr

Sources: https://github.com/FlowArg/NMSRemapHelper

Version 1.0.2 (latest)

Created 16 September 2022.

This plugin provide some tasks to help you to export a plugin with correct mappings according to your spigot server version if you develop with a mojang mapped version of the NMS.

Add this plugin to your build using the plugins DSL:

plugins {
  id("fr.flowarg.nmsremaphelper") version "1.0.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("fr.flowarg.nmsremaphelper:fr.flowarg.nmsremaphelper.gradle.plugin:1.0.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("fr.flowarg.nmsremaphelper")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("fr.flowarg.nmsremaphelper:fr.flowarg.nmsremaphelper.gradle.plugin:1.0.2")
      }
    }
    
    apply(plugin = "fr.flowarg.nmsremaphelper")
  • Applying plugins to all subprojects .