com.nemosw.relocate
Owner: NemoSW
Relocate classes without transform
https://github.com/nemosrc/relocate
Sources: https://github.com/nemosrc/relocate.git
Version 0.1 (latest)
0.1
Created 05 December 2018.
Relocate classes without transform
Using the plugins DSL:
plugins {
id("com.nemosw.relocate") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.nemosw.gradle:relocate:0.1")
}
}
apply(plugin = "com.nemosw.relocate")
Using the plugins DSL:
plugins {
id "com.nemosw.relocate" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.nemosw.gradle:relocate:0.1"
}
}
apply plugin: "com.nemosw.relocate"