Top "Maven-shade-plugin" questions

This plugin provides the capability to package the artifact in an uber-jar, including its dependencies and to shade - i.e. rename or remove - the packages of some of the dependencies.

Maven shade plugin can not find 'mainClass' exception?

There are a very strange build with maven-shade-plugin:2.4.3 in a standard maven project. It was throw can not find mainClass …

java maven maven-shade-plugin
no main manifest attribute, in jar

I am trying to run a jar created by the maven shade plugin. I am configuring the main class the …

java maven jar manifest maven-shade-plugin
How can I exclude *.DSA and *.SF files from shaded jar?

I have a section in pom.xml <filters> <filter> <artifact>*:*</artifact> <…

java maven maven-shade-plugin
maven-shade-plugin reports: Error creating shaded jar: ...target/classes (Is a directory)

When running a Maven build in eclipse using the m2eclipse tooling for a project that is configured for the …

java eclipse maven m2eclipse maven-shade-plugin
Why does Maven shade plugin remove module-info.class?

I try to use maven-shade-plugin for a modular jar: <plugin> <groupId>org.apache.maven.plugins</…

java maven java-9 maven-shade-plugin java-module
Maven - How to remove module-info.class warning for shaded .jar?

So here's my problem... I'm packaging a Spring Boot app into an uber jar using the maven-shade plugin. Simple, right? …

java maven maven-shade-plugin uberjar module-info