I want to package it not in a single executable jar for distribution. I need an executable to be something like main.jar and all dependencies to be in lis/XXX.jar

How can I make maven executable jar without preincluded into it dependencies libraries?

In How can I create an executable jar with dependencies using Maven? there is a note by answered Dec 1 '10 at 10:46 André Aronsen, but that one simply doesn't work (failed s.a.descriptorRef is not set).

link|improve this question

75% accept rate
have you looked at onejar-maven-plugin? code.google.com/p/onejar-maven-plugin – Nerdtron Nov 30 '11 at 12:20
this plugin just do opposite - it includes all jars into one main jar archive, not in subdirectory. – user564073 Dec 15 '11 at 9:05
feedback

1 Answer

up vote 1 down vote accepted

You can achieve this to a certain extent.

Firstly, you would create an executable jar by configuring maven jar plugin suitably.

You would then use maven assembly plugin to create a jar-with-dependencies, excluding your project jar. To do this, you would create a descriptor file, say src/main/assembly/descriptor.xml, like this.

<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>jar-with-dependencies</id>
  <formats>
    <format>jar</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <dependencySets>
    <dependencySet>
      <outputDirectory>/</outputDirectory>
      <useProjectArtifact>false</useProjectArtifact>
      <unpack>true</unpack>
      <scope>runtime</scope>
    </dependencySet>
  </dependencySets>
</assembly>

Use it in your project like this.

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

You will end up getting two jars - one the executable jar created by your project and the other the jar-with-dependencies created by the assembly plugin.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.