I have written a little utility to run from the command line using Java. I want to package it in a single executable jar for distribution (.jar file).
How can I make maven package all dependend jars into my jar?
|
I have written a little utility to run from the command line using Java. I want to package it in a single executable jar for distribution (.jar file). How can I make maven package all dependend jars into my jar? |
|||||||||
|
and you run it with
Compile goal should be added before assembly:single or otherwise the code on your own project is not included. See more details in comments. Commonly this goal is tied to a build phase to execute automatically. This ensures the JAR is built when executing
|
|||||||||||||||||||||
|
|
Taking Unanswered's answer and reformatting it, we have:
Next, I would recommend making this a natural part of your build, rather than something to call explicitly. To make this a integral part of your build, add this plugin to your
|
|||||||||||||||
|
|
You can use the dependency-plugin to generate all dependencies in a separate directory before the package phase and then include that in the classpath of the manifest:
Alternatively use "${project.build.directory}/classes/lib" as OutputDirectory to integrate all jar-files into the main jar, but then you will need to add custom classloading code to load the jars. |
|||||||||||||||
|
|
Use the maven-shade-plugin to package all dependencies into one uber-jar. It can also be used to build an executable jar by specifying the main class. After trying to use maven-assembly and maven-jar , I found that this plugin best suited my needs. I found this plugin particularly useful as it merges content of specific files instead of overwriting them. This is needed when there are resource files that are have the same name across the jars and the plugin tries to package all the resource files See example below
|
|||||||||||||
|
|
Another option if you really want to repackage the other JARs contents inside your single resultant JAR is the Maven Assembly plugin. It unpacks and then repacks everything into a directory via Another option is the OneJar plugin. This performs the above repackaging actions all in one step. |
||||
|
|
|
You can use maven-dependency-plugin, but the question was how to create an executable JAR. To do that requires the following alteration to Matthew Franglen's response (btw, using the dependency plugin takes longer to build when starting from a clean target):
|
|||
|
|
|
Long used the maven assembly plugin, but I could not find a solution to the problem with
You need to add repository for that plugin:
|
|||
|
|
|
You can add the following to your pom.xml:
Afterwards you have to switch via the console to the directory, where the pom.xml is located. Then you have to execute mvn assembly:single and then your executable JAR file with dependencies will be hopefully build. You can check it when switching to the output (target) directory with cd ./target and starting your jar with a command similiar to java -jar mavenproject1-1.0-SNAPSHOT-jar-with-dependencies.jar. I tested this with Apache Maven 3.0.3. |
|||
|
|
|
Use onejar plugin to build it as one executable jar file which packages all the dependancy jars in it. That solved my problem which was similar to this. When assembly plugin was used, it unpacked all the dependancy jars into source folder and repackage them as a jar, it had over written all the similar implementations I had inside my code which were having the same class names. onejar is an easy solution in here. |
||||
|
|
|
Ken Liu has it right in my opinion. The maven dependency plugin allows you to expand all the dependencies, which you can then treat as resources. This allows you to include them in the main artifact. The use of the assembly plugin creates a secondary artifact which can be difficult to modify - in my case I wanted to add custom manifest entries. My pom ended up as:
|
|||
|
|
|
You could combine the
Example POM configuration for
Finally create the executable jar by invoking:
|
|||||
|
|
Problem with locating shared assembly file with maven-assembly-plugin-2.2.1? Try using descriptorId configuration parameter instead of descriptors/descriptor or descriptorRefs/descriptorRef parameters. Neither of them do what you need: look for the file on classpath. Of course you need adding the package where the shared assembly resides on maven-assembly-plugin's classpath (see below). If you're using Maven 2.x (not Maven 3.x), you may need adding this dependency in top-most parent pom.xml in pluginManagement section. See this for more details. Class: org.apache.maven.plugin.assembly.io.DefaultAssemblyReader Example:
|
||||
|
|
|
I won't answer directly the question as other have already done that before, but I really wonder if it's a good idea to embed all the dependencies in the project's jar itself. I see the point (ease of deployment / usage) but it depends of the use case of your poject (and there may be alternatives (see below)). If you use it fully standalone, why not. But if you use your project in other contexts (like in a webapp, or dropped in a folder where other jars are sitting), you may have jar duplicates in your classpath (the ones in the folder, the one in the jars). Maybe not a bid deal but i usually avoid this. A good alternative :
Like this, with in the end just a manifest and a "special dynamic classloader main", you can start your project with :
|
|||||
|
|
it should be like that
unpacking have to be in generate-resources phase because, if in package phase, will not be included as resources. Try clean package and you'll see |
|||
|
|
|
If you want if from command Line itself . Just run the below command from the project path mvn assembly:assembly |
|||
|
|
|
The maven-assembly-plugin worked great for me.
I spent hours with the maven-dependency-plugin and couldn't make it work. The main reason was that I had to define in the configuration section explicitly the artifact items which should be included as it is described in the documentation.
There is an example there for the cases when you want to use it like: |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.