Package org.apache.maven.plugins.shade
Interface Shader
- All Known Implementing Classes:
DefaultShader
public interface Shader
Interface that defines the process of shading.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
shade
(ShadeRequest shadeRequest) Perform a shading operation.
-
Method Details
-
shade
void shade(ShadeRequest shadeRequest) throws IOException, org.apache.maven.plugin.MojoExecutionException Perform a shading operation.- Parameters:
shadeRequest
- holds the many parameters to this method- Throws:
IOException
- for IO errors reading the thingorg.apache.maven.plugin.MojoExecutionException
- for anything else that goes wrong.
-