My assembly descriptor applies the includes and excludes correctly when the dependencies are included in the pom file directly.
However when I put the dependencies in the parent pom file the assembly:directory ...
EDIT:
I am basically running into the following documented issue. I am using the maven assembly plugin to generate a jar file that includes my dependencies so that ...
I would like to build two different versions of a WAR in Maven (I know that's a no-no, that's just the way it is given the current situation). In the version ...
I am trying to setup the assembly plugin for a large multi-module project. The goal right now is to just get all of my artifacts into a directory. Here ...
I have a multimodule assembly which is correctly packaging all dependencies and output artifact from the various modules.
I have a few dependencies (hibernate jars) that comes from a non-central repository. These ...
We have a multi module project with following modules:
Database
Persistence
Business
Application
The 'Database' project is a jar project that creates an additional assembly using the 'maven-assembly-plugin'. This additional assembly contains the database schema.
The ...
Maven's assembly plugin enables the creation of a big jar including all dependencies with descriptorRef jar-with-dependencies.
How can one exclude some of these dependencies? It seems like it does not have such ...
I want to build a standalone archive that includes an OSGi container for my project's bundles to run in. The goal is to have an archive that can be downloaded, unpacked, ...
I have an assembly project with two direct dependencies, a war and an jar. In the assembly descriptor, I am trying to place the war in one folder and the jar ...