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.

Using the plugins DSL:

plugins {
  id("fr.flowarg.nmsremaphelper") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("fr.flowarg:nmsremaphelper:1.0.2")
  }
}

apply(plugin = "fr.flowarg.nmsremaphelper")

Using the plugins DSL:

plugins {
  id "fr.flowarg.nmsremaphelper" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "fr.flowarg:nmsremaphelper:1.0.2"
  }
}

apply plugin: "fr.flowarg.nmsremaphelper"

Learn how to apply plugins to subprojects