com.github.jengelman.gradle.plugins.shadow.legacy.LegacyShadowPlugin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shadow-gradle-plugin Show documentation
Show all versions of shadow-gradle-plugin Show documentation
Gradle plugin to create fat/uber JARs, apply file transforms, and relocate packages for applications and libraries. Gradle version of Maven's Shade plugin.
package com.github.jengelman.gradle.plugins.shadow.legacy
import org.gradle.api.Plugin
import org.gradle.api.Project
/**
* Empty plugin to still have the `com.github.johnrengelman.shadow` plugin applied.
*
* This allows older build logic to keep on working as if that old plugin ID was applied.
*/
public abstract class LegacyShadowPlugin : Plugin {
override fun apply(project: Project): Unit = Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy