com.sedmelluq.mass-relocator
Owner: John Sedmelluq
Makes shadow task relocate everything moveable
https://github.com/sedmelluq/mass-relocator
Sources: https://github.com/sedmelluq/mass-relocator
Version 1.0.0 (latest)
1.0.0
Created 21 January 2017.
Makes shadow task relocate everything moveable
Using the plugins DSL:
plugins {
id("com.sedmelluq.mass-relocator") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.sedmelluq:mass-relocator:1.0.0")
}
}
apply(plugin = "com.sedmelluq.mass-relocator")
Using the plugins DSL:
plugins {
id "com.sedmelluq.mass-relocator" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.sedmelluq:mass-relocator:1.0.0"
}
}
apply plugin: "com.sedmelluq.mass-relocator"