Top "Maven-assembly-plugin" questions

The Assembly Plugin for Maven is primarily intended to allow users to aggregate the project output along with its dependencies, modules, site documentation, and other files into a single distributable archive.

Building a fat jar using maven

I have a code base which I want to distribute as jar. It also have dependency on external jars, which …

maven jar maven-assembly-plugin
Maven: Include resources into JAR

I have some terrible beaviour. I have the following Maven configuration: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:…

java maven resources maven-assembly-plugin
Maven can't compile java 1.8

I'm trying to use maven to build a jar but I keep getting the error ERROR] Failed to execute goal …

maven maven-assembly-plugin maven-shade-plugin
Using maven to output the version number to a text file

I want to generate a zip file that will update an application with maven. The zip will be hosted on …

java maven-2 maven-assembly-plugin
Is it possible to rename a maven jar-with-dependencies?

I'm currently using the jar-with-dependencies assembly to create such a jar. However, the name of my jar is a bit …

java maven-2 jar maven-assembly-plugin
Maven 2 assembly with dependencies: jar under scope "system" not included

I am using maven-assembly plugin to create a jar of my application, including its dependencies as follows: <assembly> &…

maven-2 maven-plugin maven-assembly-plugin
Exception starting Spring application from Java

I am able to compile and start my Spring project using Maven: mvn -e clean compile exec:java -Dexec.mainClass=…

java spring maven-2 maven-assembly-plugin
Error reading assemblies: No assembly descriptors found

I get Error reading assemblies: No assembly descriptors found when building my project. I'm trying to set permissions for my .…

assemblies maven-assembly-plugin
How to include external jars in maven jar build process?

I want to build a .jar file with dependencies in maven. Unfortunately I have to include some external .jars in …

maven jar maven-plugin maven-assembly-plugin
Error creating assembly archive bin: You must set at least one file

I have a maven multi-module project with a module called mod1 that I'm trying to add into a folder /project …

java maven maven-assembly-plugin