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 jar and including it in a zip with maven-assembly-plugin

I have a mavenized java project (Maven2) which I want to build into a jar, which is easy enough by …

maven-2 build maven-assembly-plugin
Overwrite resource file with maven assembly plugin

I use maven-assembly-plugin with "jar-with-dependencies" to package jar. There are 2 dependencies artifact having log-back.xml. The second artifact is depend …

java resources maven maven-assembly-plugin overwrite
Exclude unused parts of dependencies from jar (Maven)

We have a small project with some heavy-weight dependencies (e.g. Spring) of which we only use small parts. Therefore, …

maven dependency-management maven-assembly-plugin
How to change permission of jar packaged by maven? I am using maven assembly plugin

I am using maven assembly plugin to package a jar with all dependencies. But the jar file is not executable. …

java maven maven-3 executable-jar maven-assembly-plugin
Why maven compilation doesn't work with "pom" packaging type

I don't know why my maven build doesn't generate target/classes in current pom setting, the packaging type must be "…

maven-2 target maven-assembly-plugin maven-compiler-plugin
Combining Jar-with-dependencies and a ZIP file using the Maven assembly plugin

I want to combine my source code in a JAR with all dependencies as well as package this up into …

java maven jar maven-assembly-plugin
When should scripts be put in /src/main/scripts (maven standard) and when not?

The Maven Standard Directory Layout says that scripts should be placed in src/main/scripts in a maven project. Besides …

maven maven-assembly-plugin