Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
2k views

maven2: excluding directory from WAR

I tried this to exclude whole directory (${basedir}/src/main/webapp/webscripts) from my WAR file but it failed. What is wrong? this doesn't work: <configuration> <webResources> ...
2
votes
1answer
130 views

Overwriting resources during maven war overlay

As I've gathered, maven-war-plugin never overwrites files which already exist in the target of an overlay. For example, if I have a war A which has a dependency on a war B, both of which contain some ...
2
votes
1answer
634 views

problem with maven webapp-cache.xml

We have a web application configured with maven. I have done a re-factoring (moved a file from one package to another) outside of eclipse, since this is not setup on eclipse and it is small fix. But, ...
1
vote
2answers
32 views

Why two .war files build with maven from the same project are diffrent?

I did like below - checkout the same project twice and build war twice: git clone repo ~/p1 git clone repo ~/p2 cd ~/p1 && mvn clean package cd ~/p2 && mvn clean package diff ...
1
vote
1answer
67 views

Generating custom WAR archives with Maven profiles

I need to produce different WARs from a Maven project, according to values that vary between profiles. For some files, I have default values that may be overwritten by configuration. For example, I ...
1
vote
0answers
90 views

maven eclipse wtp not putting custom <webxml> file in WEB-INF folder

When i deploy a webapp using eclipse wtp, the custom "webxml" file specified in pom.xml is not copied to WEB-INF folder as 'web.xml' . However the file is correctly copied in the war in the WEB-INF ...
1
vote
2answers
118 views

Maven WAR plugin and how to manage dependencies

Okay, this may well be a familiar question, however I still remain confused and I'm struggling to find an answer that really clarifies the details. The scenario I have several Maven projects, the ...
1
vote
2answers
106 views

Copy Maven dependency to webapp directory

this is similar to this question but with a twist. I have a jar in a remote maven repository. This jar is actually a applet that gets run in the web browser. So it needs to get copied into ...
1
vote
1answer
176 views

gmaven grails project not using maven-war-plugin

I'm having issues with a filtered context.xml file being packaged in a mvn grails:war execution. I have it working when you do mvn war:war but doing that doesn't create my grails application war. ...
1
vote
1answer
350 views

How to call ant task to process webapp files after “copying webapp resources” and before “building war” steps in package phase?

I'm migrating from ant to maven. However I have a custom build functionality for process web resources that I don't want to adapt yet to maven (the cost is very high) so I'm using ant run plugin. I ...
1
vote
2answers
740 views

Exclude all the jar's from webapp/WEB-INF/lib

I have the third party jar's in my WEB project placed at /src/main/webapp/WEB-INF/lib/ I have mentioned the dependency for all the required JAR's in the pom.xml. Now, Since the dependencies are ...
1
vote
1answer
451 views

Maven webResources filtering on-the-fly

I'm using the maven-war-plugin to filter some resources in WEB-INF. Mostly stuff static stuff like: var url = ${contextRoot}/save.json; or <link href="static/css/layout-${buildNumber}.css"/> ...
1
vote
1answer
625 views

maven war plugin executions and filtering in a multimodule project

I'm using maven to build a multimodule project. In one project I execute maven-war-plugin four times in order to filter some properties in every execution. As a stand alone project it works well. ...
1
vote
2answers
334 views

Generating WAR files from a multiproject Maven configuration

I have a Maven project, with 4 components Web, Persistence, Common and Other. The relevant stuff off my POM files: Parent POM: <groupId>com.test</groupId> ...
1
vote
1answer
238 views

Filter inclusion of classes maven-war-plugin

I wonder if it is possible to filter out files from WEB-INF/classes with maven-war-plugin? I have the following java package structure: src/main/java/ package1.client.* package2.client.* ...
1
vote
1answer
374 views

maven: add arbitrary file as a servlet context resource

I have a maven war project which produces webapp.war, and a maven 'skin' project which produces skin.zip (a file full of resources and XML files). Now I want to add this zip file as a servlet context ...
0
votes
0answers
8 views

maven-war-plugin overlay only changed resources

I want to speed-up my maven assembly. In my project there are several modules which are merged to one web app using maven-war-plugin, but assembly takes much time, because every time maven-war-plugin ...
0
votes
0answers
64 views

maven-war-plugin complains about missing assembly descriptor

I'm currently not using any assembly plugin in pom.xml, but I get this error: [INFO] Reading assembly descriptor: src/main/assembly/assembly.xml [INFO] ...
0
votes
1answer
86 views

excluding some classes from web-inf/classes

I use maven-war-plugin to build WAR, and I need to exclude several WAR classes from web-inf/classes (that's GWT classes, they shouldn't get to server deployment). How can I do it in maven? I tried ...
0
votes
2answers
73 views

Exec goals before war archive package

I want to run maven-replacer-plugin just before packaging war. I have find "prepare-package" phase but it triggered before war assembled and all resources copied, but I need to make changes when all ...
0
votes
1answer
81 views

How maven looks for a jar on the local machine?

I have the following pom.xml configured for my project: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
501 views

“mvn package” failure altough in Eclipse this maven web application runs

I got this error after doing "mvn clean package": [ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:w ar (default-war) on project webapp1: Error assembling WAR: ...