Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
2k views

Maven: Packaging dependencies alongside project JAR?

I've like Maven to package a project with run-time dependencies. I expect it to create a JAR file with the following manifest: ..... Main-Class : com.acme.MainClass Class-Path : lib/dependency1.jar ...
8
votes
3answers
7k views

Is it possible to rename a maven jar-with-dependencies?

I'm currently using the jar-with-dependencies assembly to create such a jar. However, the name of my jar is a bit long. Since this jar is being used by RPG programs on an AS400, I'd like to ...
6
votes
1answer
990 views

Idea to avoid that spring.handlers/spring.schemas get overwritten when merging multiple spring dependencies in a single jar

I got the error Unable to locate NamespaceHandler when using context:annotation-config running (java -jar) a jar assembled by the maven-assembly-plugin and containing my project and all its ...
6
votes
1answer
2k views

The maven assembly plugin is not using the finalName for installing with attach=true?

I have configured following assembly: <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> ...
5
votes
5answers
3k views

Maven best practice for generating artifacts for multiple environments [prod, test, dev] with CI/Hudson support?

I have a project that need to be deployed into multiple environments (prod, test, dev). The main differences mainly consist in configuration properties/files. My idea was to use profiles and ...
4
votes
3answers
147 views

Maven: how to specify which assembly plugin execution runs

I have a pom with multiple assembly executions. When I run, e.g. mvn package, it runs all the executions. How can I tell it to only run the foo execution? <build> <plugins> ...
4
votes
3answers
1k views

Using maven to output the version number to a text file

I want to generate an zip file that will update an application with maven. The zip will be hosted on a server and I am using the assembly plugin to generate the zip. However I would like maven to ...
4
votes
2answers
805 views

Maven - 'all' or 'parent' project for aggregation?

For educational purposes I have set up a project layout like so (flat in order to suite eclipse better): -product | |-parent |-core |-opt |-all Parent contains an aggregate project with core, ...
4
votes
3answers
1k views

Maven Assembly: include a dependency with a different classifier

I would like to build two different versions of a WAR in Maven (I know that's a no-no, that's just the way it is given the current situation). In the version of a WAR depicted by an assembly, I want ...
4
votes
3answers
2k views

How do I surpress maven assembly plugin skipping files that are already added? Or allow overwrite?

For weeks, I've been wrestling with maven, getting it to deploy our project "properly." I'm almost done but I have one stubborn little problem: When I use the maven assembly plugin with the ...
4
votes
1answer
4k views

Maven best practice for generating multiple jars with different/filtered classes?

I developed a Java utility library (similarly to Apache Commons) that I use in various projects. Additionally to fat clients I also use it for mobile clients (PDA with J9 Foundation profile). In ...
4
votes
4answers
6k views

Maven 2 assembly with dependencies: jar under scope “system” not included

I am using maven-assembly plugin to create a jar of my application, including its dependencies as follows: <assembly> <id>macosx</id> <formats> ...
3
votes
2answers
124 views

maven assembly throwing stackoverflowerror

Hi denizens of stackoverflow, I am having an issue with maven, specifically with the assembly phase. I have a large multi-module legacy project that unfortunately has some circular references within ...
3
votes
1answer
1k views

Trouble getting started with maven assembly plugin

I'm sorry to sound ignorant here, but I'm new to Maven, and have been banging my head against something that I'm sure is quite simple. The docs say: [...] a project could produce a ZIP assembly ...
3
votes
2answers
747 views

disable the execution: default-jar

i am using maven assembly plugin to pack a jar file. But when i run mvn package, maven always trigger the [jar:jar {execution: default-jar}] to create a default jar file. So i will have 2 jar files ...
3
votes
2answers
473 views

Maven - resource filtering : implications of the @ symbol in resource files

I am using the Maven assembly plugin to prepare some configuration artifacts for different environments, and I am using resource filtering to substitute parameter values. I came across a weird ...
3
votes
1answer
2k views

Using Maven to create a zip file containing an executable jar with dependencies

I'm trying to create a distributable zip of my project that contains several configuration files and directories, as well as the executable jar of my project. In the Maven assembly plug-in, I've found ...
3
votes
1answer
513 views

maven-assembly-plugin causing tests to run twice

I have a maven project where I am using the assembly plugin. I typically create my artifacts by running: mvn clean verify assembly:assembly (I have integration tests which I want run separately to ...
3
votes
1answer
1k views

Custom maven assembly

I'm starting to work with Maven but am not yet successfully thinking in Maven's terms. I have a specific requirement and the docs aren't giving me enough clues, so I could use a bit of help: I'd like ...
3
votes
2answers
479 views

many “META-INF/ already added, skipping” warnings when building assembly

when building a jar-with-dependencies with the assembly plugin, I get many, many messages like this: META-INF/ already added, skipping It seems to mee, that maven is warning me, that I already have ...
3
votes
2answers
8k views

Maven - Include dependent libs in jar without unpacking dependencies?

We're trying to build a client jar that includes unpacked depenedent jar's. And the manifest should have class-path entries to the dependent jars. The snippet below works but the jars are unpacked - ...
2
votes
1answer
95 views

How to assemble multimodule maven project into one WAR?

Similar question here. I would like to get ONE resulting WAR to be deployed from 3 different maven modules. The war modules are absolutely non-conflicting : First one that has Java classes and some ...
2
votes
1answer
135 views

maven assembly dependencySet empty

Im trying to setup what I think is a simple assembly, taking the jars from several modules and putting them in a specific folder inside a zip. The resulting assembly should look like so: ir4job\ ...
2
votes
2answers
88 views

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, the JAR we get when packing with all dependencies weighs several megabytes, even ...
2
votes
2answers
200 views

Generate two jar with the same maven project

I would like to generate two jars from the same maven project when executing a mvn clean install. The only difference between the two jars, will be the content of the META-INF folder. For the moment, ...
2
votes
2answers
473 views

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 on the first one. I want to have ...
2
votes
0answers
289 views

Help with setting up classpath in an executable jar file

I am trying to build an executable jar with maven-assembly-plugin with all the dependencies. I want the dependencies in a /lib/ directory inside the jar, with the main jar outside, and the ...
2
votes
4answers
246 views

Assembly always executes jar with dependencies

Hi i created a assembly to zip images of the project, and i hooked it to package phase in my pom file, the problem here is when i execute "clean compile package " it is creating my required zip file ...
2
votes
1answer
497 views

maven multi-module assembly

I have a multi-module maven project, and I'm trying to create an assembly for the project. The assembly should be a zip file, including all of the jars from the dependent projects as well as all of ...
2
votes
1answer
340 views

How to build multiple configurations of an artifact (e.g. WAR etc.) with Maven?

due to the modular nature of some of our current applications, we have a need to understand how to setup Maven to produces mutliple configurations of the same artifact (in our case a WAR file), ...
2
votes
1answer
357 views

maven: Removing format file extension from created assembly

I've got a Maven2 project, where I use assembly plugin. Everything would be just fine if created assembly file name wouldn't ended with format extension (ex. ".zip"). I specified in plugin ...
2
votes
2answers
492 views

How can I force maven to package my project against 1.5?

I am trying to compile a maven project, the source code uses Generics and other featuers of Java 1.5, thus causing my build to fail In my POM.xml I have configured the build configuration against 1.5 ...
2
votes
2answers
1k views

Creating a tar.gz archive with Maven

I have a Maven project, where under src/main directory there is a sub dir called output. this folder needs to be packaged into tar.gz. when using the assembly plugin as follows: From the pom.xml: ...
2
votes
2answers
366 views

Maven2 assembly plugin - change root name for tar.gz

I am using the assembly plugin to tar.gz up a package. I am trying to change the root output directory from ${project.name}-{$project.version} to just ${project.name}, but cant seem to find the ...
2
votes
2answers
3k views

How to publish multiple jar files to maven on a clean install

I have a used the maven assembly plugin to create multiple jar from one jar now the problem is that I have to publish these jar to the local repo, just like other maven jars publish by them self ...
2
votes
2answers
2k views

How to make jetty-maven-plugin deploy a war that is retrieved from a repository?

I'm setting up an integration test module for a good sized web project. The integration test module is separated from the web project itself, and it has it's own pom. The idea is to use the ...
2
votes
3answers
3k views

Maven Assembly Plugin - install the created assembly

I have a project that simply consists of files. I want to package those files into a zip and store them in a maven repository. I have the assembly plugin configured to build the zip file and that ...
2
votes
3answers
2k views

maven-assembly-plugin doesn't add dependencies with system scope

This is my pom file: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ...
2
votes
1answer
358 views

Problem using Maven assembly and dependency plugins

I want to assemble a web module which looks like the following: src/main/java (has some common utilities, actions etc.) src/main/resources (has some spring beans files, configuratios etc.) ...
1
vote
1answer
25 views

unpack war file after maven clean package

I use maven-assembly-plugin to create a war file under [app-root]/target/my-project-war. How do I unpack this war file so it becomes a folder under application root like [app-root]/war? The reason I ...
1
vote
0answers
30 views

Hibernate Mappings cannot be found, only when running from a JAR

I have project where in my src/main/resources I have two mapping files. Foo.hbm.xml, Bar.hbm.xml When running my main class from eclipse, all works fine. When exporting to jar file using maven ...
1
vote
2answers
45 views

Multiple files with maven-assembly-plugin --> “already added, skipping”

I need to create multiple tar files in a tar-by-environment package. Every different environment has a folder with an only file "environment.properties", so I've got to merge the project content with ...
1
vote
1answer
36 views

Maven Implementation

Hi I am implementing on of my ant project into maven. I have one parent project which is creating a EAR file. one web project and 1 service and 1 schema project. I have shared libraries with .EAR ...
1
vote
1answer
28 views

maven do not repack dependencies

I use maven assembly plugin to collect all dependencies into one jar file. How can I tell maven not to repack dependencies and include them as jar files into resulting jar? Currently I use following ...
1
vote
0answers
38 views

maven-dependency-plugin unpacking files in binary mode

We are using maven Assembly and Dependency plugin to share resources across sub-modules, as described in this post, ...
1
vote
1answer
42 views

maven-assembly-plugin holds lock on file

I'm using the maven-assembly-plugin to produce a zip file for some database scripts. I am having an intermittent problem in that if my build fails for whatever reason, when I come to rebuild it often ...
1
vote
2answers
34 views

can maven assembly plugin picking the specify java package?

Suppose we have following packages in our project org.xxx.dao, org.xxx.service, org.xxx.service.impl all the package are in ther source folder src/main/java can i assembly packages into ...
1
vote
1answer
27 views

Maven Assembly: Setting up external svn for in-program-use

I have a very specific question. The project I am on is a maven3 driven multi-module Project. The Project uses the SVN-Api to synchronize data from a repository and process it. More specifically: A ...
1
vote
1answer
24 views

Can I have one Maven assembly descriptor depend on another?

Here is a snippet from my pom file. <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> ...
1
vote
1answer
129 views

How do I include an empty directory in a maven assembly?

In what must be a common occurence, I need to include an empty directory in an assembly. In my case it is logs/. I've tried different variations in the assembly descriptor like: <fileSet> ...

1 2 3 4