com.xpdustry.kotlin-shadow-relocator
Owner: Finley Experience
Gradle plugin handling Kotlin metadata relocation for Shadow
https://github.com/xpdustry/kotlin-shadow-relocator
Sources: https://github.com/xpdustry/kotlin-shadow-relocator
Version 2.0.0 (latest)
2.0.0
Created 15 November 2024.
Gradle plugin handling Kotlin metadata relocation for Shadow
Using the plugins DSL:
plugins {
id("com.xpdustry.kotlin-shadow-relocator") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.xpdustry:kotlin-shadow-relocator:2.0.0")
}
}
apply(plugin = "com.xpdustry.kotlin-shadow-relocator")
Using the plugins DSL:
plugins {
id "com.xpdustry.kotlin-shadow-relocator" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.xpdustry:kotlin-shadow-relocator:2.0.0"
}
}
apply plugin: "com.xpdustry.kotlin-shadow-relocator"