blue.lapis.methodremapper
Owner: Minecrell
TODO
https://github.com/LapisBlue/MethodRemapper
Sources: https://github.com/LapisBlue/MethodRemapper
Version 0.2 (latest)
0.2
Created 04 March 2016.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
TODO
Using the plugins DSL:
plugins {
id("blue.lapis.methodremapper") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.blue.lapis.methodremapper:gradle-plugin:0.2")
}
}
apply(plugin = "blue.lapis.methodremapper")
Using the plugins DSL:
plugins {
id "blue.lapis.methodremapper" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.blue.lapis.methodremapper:gradle-plugin:0.2"
}
}
apply plugin: "blue.lapis.methodremapper"