Tagged Questions
1
vote
1answer
49 views
Packaging war file with maven
I thought that, if my project is named my-web-application, than when I call mvn clean install maven first compiles to target\my-web-application-1.0 folder and than "zips" that folder to ...
1
vote
4answers
71 views
How do I include dependencies only in my war?
I would like to include (maven) dependencies in my war while making sure that they are not in the runtime or test scope.
The problem is the following:
There a number of jars (let's say jar A, B, ...
0
votes
2answers
104 views
Not able to detect Persistence.xml
i have 3 days searching for a solution ,but nothing helpful,
i want to deploy an MAVEN Web project ,this Web project contains a dependency of an EJB maven project(i use the MAVEN POM EDITOR to add ...
0
votes
1answer
53 views
How to package docs artifact within WAR
I've got the maven-enunciate-plugin integrated so that it generates documentation during the build and outputs it to the docs directory under the target directory. As I'm new to Maven I would like to ...
0
votes
0answers
34 views
Load two war files into tomcat in Maven Multi Module Project
I have 3 Modules in Multi Module Maven Project
. proj.war
. proj2.jar
. proj3.war
I want to load those 2 war files into tomcat (through tomcat:run). So that I can access like
for 1st project ...
0
votes
0answers
71 views
Maven overlay - why do I get compilation errors during build?
I use eclipse Juno, with its Maven support (Maven 3.0.4).
My main war project uses another legacy war project as a dependency.
So I'm trying to include the legacy war as an overlay.
I have the ...
1
vote
2answers
88 views
Adding Additional classes in maven WAR build
I'm currently using maven3 with https://maven.apache.org/plugins/maven-war-plugin/ and http://tomcat.apache.org/maven-plugin-2.0/ with http://mojo.codehaus.org/build-helper-maven-plugin/ to add ...
0
votes
0answers
32 views
Assembling several profiles with Maven?
I have a maven project which builds a war file and also contains a few text files which need to be delivered alongside the war file.
I have managed to make an assembly configuration to package both ...
0
votes
1answer
386 views
War file deployment in JBoss 4.2 server, with Maven repositories
I am a first time maven user. The project I have needs to be deployed into JBoss 4.2 server as a war file.
I realized we can eliminate Ant if we are using Maven.
Previously I used to configure my ...
0
votes
3answers
122 views
How create file and put it in a war with Maven?
How I can create file and put it in a war with Maven when building the war?
0
votes
1answer
176 views
Multiple timestamp Snapshot duplicates in WAR file - why?
I have a multi-module Project Bookstore (one of the modules is a WAR). Some modules depend on projectX(and some of the dependencies depend on that projectX too). I've used maven properties and ...
0
votes
1answer
709 views
Copy generated jar or war files to target directory
Below is my maven project structure:
Main-Project
Module1,
Module2,
Module3
All the above modules either generate jar or war files in the target directory of each module
I need to ...
0
votes
2answers
1k views
Can't get the maven-war-plugin to exclude jaxb jars
I'm trying to use the <packagingExcludes> of the Maven war-plugin.
This is my configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
0
votes
1answer
140 views
excluding certain files from a jar which is a dependency in a war in maven3
i have a jar say xyz.jar which has structure as src/main/java/resources . Now this resources folder has 3 sub-folders say a/fileone.txt b/filetwo.txt and c/filethree.txt . I am using this jar as a ...
0
votes
3answers
378 views
Exclude jar from war Maven 3
We need to exclude few jars from war ...we are using maven 3 in weblogic.
I tried
<packagesourceexludes>...and <warsournceexludes..>
but didn't work.
Any other way to do this.
...
10
votes
1answer
2k views
How to handle Maven WAR overlays in Eclipse?
I have a multi-module Maven project that makes use of WAR overlays (stack of them 3 deep). Everything works great in Maven, but I am unable to launch my WAR from within Eclipse because it complains ...
5
votes
1answer
2k 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 ...
5
votes
2answers
16k views
how to make war file in eclipse [duplicate]
What is the easy way to make war file.
my project is working when i right click run on server .
but i want to deploy on tomcat server.
i installed m2clipse but i gave error
1)is maven compulsory to ...
2
votes
1answer
158 views
Different maven versions cause extra libraries to be included in WAR file
I'm trying to build a war file to be deployed to a tomcat server using Maven, but have noticed some strange behaviour when building my war file:
When running the command from project folder: mvn ...