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.
0
votes
0answers
36 views
maven assembly archive with leading ./ folder
I’m using maven assembly plugin that creates a targz archive with this descriptor:
<assembly>
<formats>
<format>tar.gz</format>
</formats>
...
1
vote
2answers
53 views
Maven: Distribute source code with with jar-with-dependencies
I am using the Maven assembly plugin to package binaries of my Java project into a fat jar (with the jar-with-dependencies descriptor). This works pretty well.
Question: How can I also include the ...
0
votes
0answers
29 views
netbeans maven-assembly-plugin builds jar with dependencies but without project classes
In netbeans 7.2.1 i am trying to build an executable jar with dependencies using the maven assembly plugin. It worked in the past but when building the jar now it contains all dependencies except the ...
0
votes
1answer
51 views
renaming a file while creating zip file through Maven-assembly plugin
i am using maven-assembly plugin to create the zip , how can i rename some files while zipping using the same plugin??
Update:
This is the profile in pom
<profile>
...
0
votes
1answer
40 views
No executable code found at line [duplicate]
I am getting this message "No executable code found at line" when doing a remote debug from IntelliJ ver 12. This is a Java application. It is using maven for building the war. Not sure where to make ...
0
votes
0answers
28 views
instructing maven assembly plugin to unpack thirdparty jar which is not defined as dependency in pom.xml
Using maven-assembly-plugin I am able to create a *.jar with my project specific requirements. It unpacks all dependencies and transitive dependencies. But along with that I have a third party jar ...
0
votes
0answers
17 views
Creating a multimodule directory assembly fails
I have a multimodule project containing three projects. I try to copy the content of src/main/config of each module to target/benchmark/config in the parent project directory.
parent
pom.xml ...
0
votes
1answer
24 views
maven assembly- sub folder
I want to use maven assembly plugin
assembly
'<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
...
0
votes
2answers
31 views
How to share configuration files across modules in Maven
I am working on a java maven project with several modules.
I am facing issues with sharing configuration files from one module to its dependency.
For instance i have a module named utils which holds ...
1
vote
1answer
35 views
Creating zip file in package phase
For Creating the zip file through maven i followed this : Creating a zip archive of the maven "target" directory and i am using this maven command assembly:single .
Is it possible to create ...
0
votes
1answer
50 views
How to have maven automatically build assembly submodule after new submodules
I have a multi-module maven project that uses the assembly plugin to create an archive of all the binaries produced by the submodules. As recommended in this article, I put my assembly descriptor in a ...
0
votes
1answer
34 views
How to include all files (not directories) in basedir of Maven assembly
In a maven assembly as shown below the result is recursion occurring re-including the base directory.
Following fails in fact consumes cpu and does not return:
<assembly ...
0
votes
0answers
41 views
Error in maven assembly:single target: request to write 8192 bytes exceeds size in header
This project compile's and packages' successfully, but assembly does not work. Here is the pom.xml fragment:
<plugin>
...
0
votes
3answers
60 views
Building a fat jar using maven
I'm quite new to maven. I have a code base which I want to distribute as jar. It also have dependency on external jars, which I want to bundle in the final jar. I heard that this can be done using ...
0
votes
1answer
44 views
How to exclude some of the folders while creating zip file through maven
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
0answers
61 views
Add sources and javadoc dependencies transitively for a dependency?
Hope someone can help me. I have to create a file which contains an ear archive, a Doc folder and a Code folder. Inside Doc folder I have to include one folder for each of our own modules the project ...
0
votes
0answers
16 views
Bundling multiple JARS into one and choosing specific one from client app
I'm working on a library jar (more like a wrapper on other libraries) which has dependency on more than one other library jars. I know that I can create a one jar/fat jar using eclipse and ship it. ...
1
vote
1answer
33 views
Build .jar from specified dependencies using maven-assembly-plugin
I've got the maven-assembly-plugin working a treat, building a big fat .jar that includes my dependencies. Is there a way to build a .jar that only includes my project's code and a couple of specified ...
1
vote
1answer
61 views
Maven: Package files generated during site lifecycle using Assembly plugin
I'm attempting to package some files that get generated during the site life-cycle of a maven project so that I can automatically share these resources with other projects that use them.
I have ...
0
votes
0answers
47 views
Customize maven assembly plugin
I like Maven quite a lot as it makes some things really easy, but it is sometimes hard for me to deal with some parts of it...
Although I searched the web, I don't get it to work as I want.
Here's my ...
7
votes
1answer
133 views
Speeding up maven assembly of multiple modules
I'm having a project of the following form
- pom.xml
- projectA
- pom.xml
- src/main/
- java
- startupScript
- projectB
- pom.xml
- src/main/
- java
- startupScript
- ...
0
votes
1answer
92 views
Creating Two Executable Jars Using maven-assembly-plugin
I have a Maven project and I want to create two executable jar files from it. One will be used interactively by users and a second will be run as a scheduled job that reads the log files produced by ...
0
votes
1answer
35 views
Maven Plugin Error: Tests Failed
I'm trying to install a plugin using Maven (batch importer for neo4j). Using
mvn clean compile assembly:single
Gave me an error that the directory could not be created. I changed it to:
sudo mvn ...
-2
votes
2answers
61 views
maven assembly , how to specify the class i want to packaged in my jar
I need to use the plugin maven assembly from wrap one class of my application in a jar.
when i use maven, the plugin assembly package all class in my package in target jar.
how to specify the class ...
0
votes
1answer
192 views
How to include custom files in JAR with Maven assembly plugin jar-with-dependencies
I need to include custom file (/com/app/log4.properties) in a final JAR.
How can I add one file to my JAR when using jar-with-dependencies?
Now there are only class files in that JAR. I'm using:
...
2
votes
1answer
101 views
How to Exclude Certain Jar Dependencies when Using Maven for Jar Assembly
There are a handful of very similar-seeming questions on StackOverflow, but I'm having trouble finding anything that works.
For now, I'm trying to remove log4j from the built Jar.
Although I'm new ...
0
votes
1answer
18 views
Which Artifact to choose for a JAR maven Project?
Im developping an application that contains too projects
1.EJB Maven Project: it's a JAR file contains my models (jpa entities) and my services ( session Bean)
2.WEB Maven project: project ...
0
votes
0answers
49 views
Assembly plugin transitive dependencies in referencing project
I'm using the assembly plugin to generate a "client-view" from project A without any dependencies. Project B depends on this "client-view". Although I excluded all dependencies from the A-client-view ...
2
votes
1answer
56 views
Maven Assembly: config files best practice
I have a multi-module maven project, including a seperate assembly-project. As i develop and run my application from eclipse (during development), i have specific configuration-files (e.g. log4j or ...
1
vote
1answer
39 views
Maven Assembly include specific version of the artifact
I am including few jars in DependencySet include section
<includes>
<include>dom4j:dom4j:jar</include>
<include>log4j:log4j:jar</include>
</includes>
...
0
votes
0answers
118 views
Using maven-shade-plugin with maven-assembly-plugin
I have a project which packages several (executable jar) assemblies using the maven-assembly-plugin - basically the same code but with different sets of data for different clients.
I have a need to ...
0
votes
1answer
63 views
Maven assembly plugin with unicode characters
I have an external groovy script that i need to include in a zip file by means of the maven assembly plugin.
I can't just compile it, it needs to be in text-form.
The problem i am facing is that the ...
1
vote
0answers
31 views
How to associate an Ant task during mvn assembly:single?
Using the maven-antrun-plugin I am able to attach an ant task to a maven phase.
I am using maven assembly plugin without attaching it to any phase : a script is running the command mvn ...
1
vote
1answer
131 views
Packaging Dependent JARs into apklib with Maven
I am developing an Android class library that compiles to an apklib using Maven. However, when I build the library project (mvn clean install), my dependent JARs (of which there are about 12) are not ...
0
votes
0answers
55 views
Adding the JAR from a sibling module to the constructed lib directory using Maven Assembly Plug-In
I'm trying to do something quite similar to inverse of Managing multi-module dependencies with Maven assembly plugin.
My project has several modules, each of which creates a JAR for an application. ...
1
vote
1answer
46 views
Maven Assembly: DependencySet or ModuleSet
I have a multi-module project:
Assembly-Project
--------- Module1
--------- Module2
I want to collect the jars of the modules in my assemby (zip).
What is the best way to archive that? Using ...
0
votes
0answers
66 views
Maven assembly plugin: filter not escaping backslash when colons exist
I'm filtering some configuration files with the Maven assembly plugin 2.4 and have got the problem that in .bat files, literal backslashes are not escaped when the value contains a colon.
pom.xml:
...
0
votes
0answers
14 views
Howto define which Files should be Included in package?
I would like to build a "libary-jar", which includes interface definitions and reference implementation. Sadly its a legacy Application, and interfaces and implementations are stored on various places ...
0
votes
0answers
28 views
Why does Maven Shared Assembly Plugin need the same dependency 2 times?
I am using maven assembly plugin whereas I use an assembly file from another jar. Maven says that I need to add the specific package (which contains the assembly.xml) in the pom.xml of the other ...
1
vote
0answers
80 views
Maven - Using the Assembly plugin to package dependencies from multiple projects into one file
I'm working on a project that is made up of multiple other projects. It has the following structure:
MainProject
--projectA
--projectB
--projectC
--projectD
--parent
--projectE
...
0
votes
3answers
45 views
Maven3: How to create 3 jars from 1 project
I have a single java project that contains 3 different classes that each has a main().
I have a single pom.xml file for the entire project.
I would like Maven to make a jar for each of those classes ...
1
vote
1answer
120 views
Maven: Build runnable jar and then add to zip with maven-assembly-plugin
I have a maven problem that should be easy to solve, but is proving to be a bit difficult.
I have a project that builds a jar, and needs that jar to be able to execute a class com.foo.bar.MainClass, ...
1
vote
0answers
50 views
Extract subset of repository with maven assembly
Using maven-assembly-plugin version 2.4, I want to build a zip of my repository containing only jar under groupid starting with mypackage.
Using repository with pattern mypackage.*:* does not work. ...
0
votes
3answers
99 views
Maven Assembly plugin: useTransitiveDependencies not working?
In my assembly descriptor I have the following:
<dependencySets>
<dependencySet>
<outputDirectory>ext</outputDirectory>
...
1
vote
0answers
53 views
Extending maven plugin
I am trying to generate a zip file assembly using the maven-assembly-plugin. There are only two problems I have left that I'm wondering if it's possible to solve with just configurations but as a last ...
1
vote
1answer
46 views
Build a “light” jar on multi-module project
I have a multi-module project which I assemble with the assembly plugin to a fat jar. Thank works fine so far, but now I want to build another jar that only consists of special packages of the ...
1
vote
1answer
181 views
how to tell maven assembly on a submodule to include only dependencies this module needs?
I am working on a multi-module maven project with these modules
parent
|-- restful // this is a jersey restful service as a WAR
|-- shared // some stuff shared by all other modules as a ...
0
votes
1answer
48 views
Testing maven assembly result
I have a maven multi module project where two modules of mine should be assembled through the maven plugin for deployment on top of a container.
Let's say my hierarchy is the following
module1
...
0
votes
1answer
58 views
Maven: creating an archive (zip or jar) file containing files outside the project?
I'm currently working on a Maven based project in which I have unit tests that generate PDF files in, let's say "C:/result" directory (I definitely don't want these files to be created within any ...
0
votes
1answer
84 views
Forcing maven assembly plugin to run after maven profile changed properties
I'm using maven assembly plugin with profiles to generate a zip file with the structure of the application and to guarantee that the paths are correct:
<profiles>
<profile>
...
