[ACCEPTED]-Create a zip with all dependencies with Maven-maven-assembly-plugin

Accepted answer
Score: 33

You need a custom assembly descriptor to 9 do what you want. It's a combination of 8 the bin and the jar-with-dependencies predefined 7 descriptors. Created a custom assembly descriptor 6 called assembly.xml in the src/main/assembly folder.

Here's an example 5 that is basically the bin descriptor with 4 the dependency set added:

    <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.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
  <id>bin</id>
  <formats>
    <format>tar.gz</format>
    <format>tar.bz2</format>
    <format>zip</format>
  </formats>
  <fileSets>
    <fileSet>
      <directory>${project.basedir}</directory>
      <outputDirectory>/</outputDirectory>
      <includes>
        <include>README*</include>
        <include>LICENSE*</include>
        <include>NOTICE*</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>${project.build.directory}/site</directory>
      <outputDirectory>docs</outputDirectory>
    </fileSet>
  </fileSets>
  <dependencySets>
    <dependencySet>
      <outputDirectory>/</outputDirectory>
      <useProjectArtifact>true</useProjectArtifact>
      <scope>runtime</scope>
    </dependencySet>
  </dependencySets>
</assembly>

Then change your 3 pom to use a descriptor instead of a descriptorRef 2 to tell it where your custom descriptor 1 is.

<project>
  [...]
  <build>
    [...]
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2.1</version>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/assembly.xml</descriptor>
          </descriptors>
        </configuration>
        [...]
</project>
Score: 3

Take a look here Example 502...there is an example 2 how to package all dependencies etc. into 1 a tar.gz/zip etc.

Score: 1

Take a look at fat-jar plugin.

0

More Related questions