2
votes
4answers
26 views
Filtering Maven files into WEB-INF
I am trying to add some filtering to the application context file, which resides in the WEB-INF directory.
I have the file which is to be filtered (xmlgateway-context.xml) in th …
2
votes
6answers
838 views
With multi-module Maven projects, is it possible to make my root (pom-packaged) project available in Eclipse?
We have a fairly large group of Maven2 projects, with a root POM file listing 10+ modules and a lot of properties used by the modules (dependency version numbers, plugin configurat …
1
vote
5answers
174 views
Maven - Include Different Files at Build Time
I have ten WAR files, all of which have nearly identical code and markup. The only differences lie in the images, CSS and Messages. I hit on the concept of Profiles but I haven't q …
4
votes
4answers
70 views
find pom dependencies by classname
How can I found the dependency by classname?
In particular, I want to include this class org.mortbay.jetty.testing.ServletTester in my project, how do I do that? And how did you f …
3
votes
2answers
57 views
What is the significance of the POM file that Maven places in a JAR file, is it used by anything?
When Maven builds a JAR file, it places the module's POM file inside (seemingly in the directory <groupid>/<artifactid>).
When I build a JAR file from Ant to be deploy …
0
votes
1answer
31 views
How do I exclude files/directories from the target directory using the maven war plugin?
I followed the instructions here, and it worked but only if it was mapped to a directory other than the default.
Here's a sample that I tried:
<configuration>
<webR …
0
votes
1answer
20 views
How can the output path of the generated JAR be set in a Maven build profile?
I have a Maven POM set up with multiple build profiles. For one profile, I want to copy, move, or build the JAR file that is generated in the target folder to another folder. How c …
1
vote
4answers
331 views
maven deploy additional jar file
I have an artifact which is being built and deployed in a particular way (not as a jar file). In the course of deployment, a war file is built.
How can I configure the pom so that …
2
votes
2answers
157 views
Maven: Including jar not found in public repository
If I was to use a 3rd party library that was not in the maven public repository, what is the best way to include it as dependency for my project so that when someone else checks ou …
2
votes
1answer
203 views
Adobe Flex/AIR Maven integration
I am writing an Adobe AIR application that needs to build in a CI using maven and nexus. I tried to follow this article which is the most up to date article from the source, but I …
3
votes
3answers
521 views
How can I use Maven to get the latest Hibernate release?
I am having trouble getting the latest release of Hibernate via Maven dependency. It appears that the latest I can fetch from a Maven central repository is 3.2.6.GA, and I am inte …
1
vote
2answers
211 views
adding additional resources to a maven pom
I have a super pom defined in which I specify a "resources" directory for resources. In one of my projects, my pom extends that super pom, and I would like to add an additional res …
0
votes
1answer
499 views
mvn archetype:generate Error building POM (may not be this project’s POM)
Hi all!
I am trying to create a jsf+spring+hibernate from a spring project. Below are the steps i have taken. I have been successful in creating projects in the past using the sam …
1
vote
3answers
143 views
LATEST version of parent project in Maven
Hi,
I am using Maven2. I have created a parent POM for my organization. I want the various groups will use it as a parent for their project but I want them to use the latest versi …
1
vote
3answers
197 views
Collapsing parent POM into the child
Given a maven project with a parent POM - including mostly plugin and dependency versions - how can I generate a POM which takes the information from the parent, places it into the …
