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.

Maven: Packaging dependencies alongside project JAR?

I'd like Maven to package a project alongside its run-time dependencies. I expect it to create a JAR file with …

maven-2 dependencies manifest maven-assembly-plugin
Maven. How to include specific folder or file when assemblying project depending on is it dev build or production?

Using maven-assembly-plugin <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.1</version> <configuration&…

maven-2 maven maven-assembly-plugin
Create multiple runnable Jars (with dependencies included) from a single Maven project

I have a single maven project that has multiple main classes. I want to generate runnable Jars (that include all …

java maven executable-jar maven-assembly-plugin
Maven - Depend on assembled zip

I'm trying to have a Project B pull down (and unpack) a ZIP built by Project A and deployed to …

maven zip pom.xml maven-assembly-plugin maven-dependency-plugin
Creating a tar.gz archive with Maven

I have a Maven project, where under src/main directory there is a sub dir called output. this folder needs …

maven-2 archive maven-assembly-plugin
How to exclude dependencies from maven assembly plugin : jar-with-dependencies?

Maven's assembly plugin enables the creation of a big jar including all dependencies with descriptorRef jar-with-dependencies. How can one exclude …

java maven jar maven-assembly-plugin
Create a zip with all dependencies with Maven

Possible Duplicate: With Maven, how can I build a distributable that has my project's jar and all of the dependent …

maven maven-assembly-plugin
java maven rebuild dependency

I have a project which has dependency A. Project is packing into WAR and dependency A - into jar. And …

java maven-2 maven-assembly-plugin
Maven best practice for generating multiple jars with different/filtered classes?

I developed a Java utility library (similarly to Apache Commons) that I use in various projects. In addition to fat …

maven-2 maven maven-assembly-plugin