Tagged Questions
3
votes
4answers
225 views
Best way to share portions of a Maven pom.xml across unrelated projects?
Our company has defined a number of "best practices" with regard to Maven poms. For example, specifying utf-8 for resource processing, which folders to do filtering on, handling unit tests vs ...
3
votes
2answers
1k views
Maven 2 <resources> inheritance (parent -> child project)
(also posted on maven-users)
Wondering if anyone can shed some light on inheritance of the elements in pom.xml as relates to resource processing and the WAR plugin.
The documentation for the pom ...
2
votes
1answer
127 views
Running a maven plugin only in the parent
I've created a maven plugin to start, clean and stop a database. My project exists of a pom file with 4 modules:
<modules>
<module>infrastructure</module>
...
1
vote
1answer
17 views
Customized context.xml per environment using maven
I have two context.xml files in my Java web project:
context.xml.development
context.xml.production
and I use maven war plugin to build it.
When I build the project, I'd like maven to copy the ...
1
vote
2answers
513 views
maven generating pom file
I use maven 3.0.3 and have tried to generate pom for third-party jar like this:
mvn install:install-file -Dfile=cobra.jar -DgroupId=com.cobra
-DartifactId=cobra -Dversion=0.98.4 -Dpackaging=jar ...
1
vote
1answer
224 views
Exclude whole parent dependency
The parent pom has got the following dependencies
<dependencies>
<dependency>
<groupId>tv.my</groupId>
<artifactId>cable</artifactId>
...
1
vote
0answers
410 views
Parsing maven pom.xml, using maven jar
I have been trying to parse maven pom.xml. I was successful to an extent. But my problem is I cannot get the default values. I have to manually inject the default values.
For example, if version ...
1
vote
3answers
577 views
XSLT Document function returns empty result on Maven POM
Greetings!
I want to extract some properties from different Maven POMs in a XSLT via the document function. The script itself works fine but the document function returns an empty result for the POM ...
1
vote
2answers
591 views
Maven2 applying filtering to the file under pom type packaging
I am new to maven. I want to use filtering in a multimodule project. The packaging type of the parent pom is set to pom. The structure of the project is as follows:
pom.xml
|
|______MODULE1
...
0
votes
1answer
67 views
how to escape '&' in maven pom property values
I need to set a URL via a maven property (to be replaced per profile). The problem is that this URL contains some & and maven doesn't like this (if URL contains &_program):
"The reference ...
0
votes
2answers
48 views
maven copy multiple files from different resource folders to a single tagert folder
Suppose
file1.txt, file2.txt under src/main/resource/folder1/folder2/
and file3.txt under src/main/resource/folder2/
I want all txt files under target/testFolder/
Can anyone tell me how to do ...
0
votes
1answer
36 views
Maven POM version management for multiple maven projects
In our projects, we have about 25 maven projects and each one of them contains at least 3 module projects and one parent POM. So total is around (25 *4) 100 POM files. Is there any easy way to ...
0
votes
1answer
166 views
Maven artifacts could not be resolved
I added the spring and jboss repositories to my pom.xml like below:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
1answer
61 views
Cannot download push-server dependency from icefaces or ibiblio repos
the dependency push-server exists in both icefaces and ibiblio repos
http://anonsvn.icefaces.org/repo/maven2/releases/org/icefaces/push-server/
...
0
votes
1answer
213 views
How to set up a pom.xml to process certain directories with Maven for Sonar?
I have a directory structure something like this:
base
subdir1
subdir2
subdir3
subsubdir1
subsubdir2
subdir4
unittests
How do I set up my pom.xml so that it only processes the folders in bold? ...
0
votes
2answers
328 views
How can I do a git pull in Maven?
I'm new to both maven and git and wanted to get some help in setting a project.
Is there a way to define a goal in the pom to push/pull from git during linked to a maven phase? For example, can I ...
0
votes
1answer
174 views
What's wrong with the commons-fileupload dependency?
I'm trying to use commons-fileupload module by including its dependency in pom.xml. Packaging has no problem, however, when starting the web-app, it causes the "NoClassDefFound" error:
...
0
votes
2answers
73 views
Maven project. Two POMs, one for dev, one for publishing
I am working on a library that uses Maven. The current pom.xml file has a lot of stuff related to tests, reports, etc.
I now want to publish a release of this library to a private Maven repository. I ...
0
votes
1answer
303 views
How do I use pom.xml profile properties with pom aggregation?
I am using a pom.xml to aggregate various builds. I'd like to setup profiles with settings that apply to multiple pom.xml files. So, I have something like
<project>
....
<modules>
...
0
votes
0answers
75 views
Maven mentioning alternate pom.xml recursively for all children
I know that an alternte pom.xml can easily be defined for the current pom.xml , what if I want to mention an alternate one for all child modules of the current one which acts as a parent for the child ...
0
votes
1answer
124 views
Cannot find SerialAddress class in Apache Mina 2.0.2
I added the below dependencies in my project POM file and the SerialAddress class is no where to be found from the downloaded mina-core.2.0.2.jar.
<dependency>
...
0
votes
1answer
401 views
Hudson Maven build fails using workspace POM, works when pointing to development copy
I'm developing a series of web applications using Eclipse IDE, Maven, SVN, and Hudson for CI.
When I specify the "Root POM" option in my Hudson job to be the copy of pom.xml in its workspace ...
0
votes
1answer
339 views
Additional context for tomcat:run goal
How do I add an additional directory based context to a tomcat:run configuration?
I have the following jetty plugin configuration:
<build>
<plugins>
<plugin>
...
0
votes
1answer
128 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 can this be achieved?
...