You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
434 B
Groovy

package org.xbib.gradle.plugin.shadow.relocation
/**
* Modified from org.apache.maven.plugins.shade.relocation.Relocator
*/
interface Relocator {
boolean canRelocatePath(RelocatePathContext context)
String relocatePath(RelocatePathContext context)
boolean canRelocateClass(RelocateClassContext context)
String relocateClass(RelocateClassContext context)
String applyToSourceContent(String sourceContent)
}