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.

How to set manifest class-path in maven shade plugin?

I'm using shade plugin and everything works fine except for being able to set Class-Path for manifest via <transformer …

maven classpath manifest maven-assembly-plugin maven-shade-plugin
Maven assembly : add different version of the same artifact

I create my application archive with the maven assembly plugin. All the dependency present in my pom are included without …

java maven-2 maven-plugin maven-assembly-plugin
Managing multi-module dependencies with Maven assembly plugin

I use Maven assembly plugin to create an assembly for my multi-module project. There are two separate applications built from …

maven dependency-management maven-assembly-plugin multi-module
Maven assembly plugin warning "The assembly descriptor contains a filesystem-root relative reference"

Starting from some assembly plugin version maven builds issue the following warning: [WARNING] The assembly descriptor contains a filesystem-root relative …

maven cross-platform maven-3 maven-assembly-plugin
Maven Assembly Plugin - install the created assembly

I have a project that simply consists of files. I want to package those files into a zip and store …

maven-2 maven-assembly-plugin
How to configure maven:assembly root path in the jar

Here is the pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" …

java maven jar maven-assembly-plugin
renaming a file while creating zip file through Maven-assembly plugin

i am using maven-assembly plugin to create the zip , how can i rename some files while zipping using the same …

maven maven-assembly-plugin
No executable code found at line

I am getting this message "No executable code found at line" when doing a remote debug from IntelliJ ver 12. This …

java maven build intellij-idea maven-assembly-plugin
How to exclude some of the folders while creating zip file through maven

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://…

maven maven-assembly-plugin
Why does "mvn assembly:single" create a fat jar with just the assemblies and not my code?

I have a maven project I created with spring roo. When I run mvn assembly:single I get a fat …

java maven-2 maven-assembly-plugin