Tagged Questions
20
votes
2answers
5k views
differences between dependencymanagement and dependencies of maven
Hi:
What is the differences between dependencymanagement and dependencies?
I have seen the docs at apache maven web site.However I got nothing.
It seems that a dependency defined under the ...
5
votes
3answers
3k views
How to exclude pom.xml from Maven generated war?
Using Maven war plugin, I generate WAR which includes following directory:
META-INF
-- maven
-- com.abc.def
-- myServlet
-- pom.xml
-- pom.properties
In release, I want ...
4
votes
3answers
392 views
Anonymize pom.xml on release
I've got artefacts which are built and released using Maven.
The artefact's original pom.xml contains the usual project information (artifactId, name, etc.) and the dependencies. That's fine. But the ...
4
votes
4answers
4k views
how to add the servlet api to my pom.xml
How do I add the servlets API to my project's pom.xml
mvnrepository.com has lots of servlet api and similarly named projects, that I don't know which is the right one. Or are all of them ok?
3
votes
3answers
128 views
pimp up a plain jar to be a maven jar with internal pom.xml for Artifactory
I need to use a xyz.jar wich was generated with ant. Hence, the transitive dependencies are missing. So I had the idea, to modify the xyz.jar to add the internal ...
3
votes
4answers
226 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
4answers
231 views
Maven pom.xml - Project Aggregation
We have a aggregation .pom set up to include several, individual modules, similar to the Maven documentation:
<project>
<modelVersion>4.0.0</modelVersion>
...
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 ...
3
votes
2answers
3k views
Is there anyway to exclude artifacts inherited from a parent POM?
Artifacts from dependencies can be excluded by declaring an <exclusions> element inside a <dependency> But in this case it's needed to exclude an artifact inherited from a parent project. ...
2
votes
1answer
340 views
Reading properties file from Maven POM file
I have Maven POM file with some configuration and in section plugins i have maven tomcat plugin with some configuration like this:
<configuration>
...
2
votes
2answers
592 views
maven junit pom.xml
i have a following problem.
I'd like ti test my JSF Application with JSFUnit.But JSFUnit supports inly junit3 (all our unit tests run with JUnit4).
Is it possible to include in pom.xml two junit ...
2
votes
1answer
532 views
Implicitly including optional dependencies in Maven
I have a project A which has a dependency X. Dependency X has an optional dependency Y which doens't get included in A by default. Is there a way to include Y in my POM without explicitly including ...
1
vote
4answers
157 views
Who is responsible for updating the Maven repository for App Engine and can anyone else do it?
I have this declaration in my pom.xml:
<repositories>
<repository>
<id>jboss-repo</id>
<name>jboss repository</name>
...
1
vote
1answer
228 views
Exclude whole parent dependency
The parent pom has got the following dependencies
<dependencies>
<dependency>
<groupId>tv.my</groupId>
<artifactId>cable</artifactId>
...
1
vote
1answer
93 views
How can I view transitive dependencies of a Maven pom.xml file?
Is there a CLI tool I can use to quickly view the transitive dependencies of a Maven pom.xml file?
1
vote
1answer
636 views
How to use a maven 1 repository with maven 2?
I am having problem building my project (using maven 2) which references some jars from a maven 1 repository.
The scenario: My company has a private maven 1 repository that has the following info:
...
1
vote
1answer
381 views
How to use pom.xml/Maven to initialize a local thoughtsite (App Engine sample) project in Eclipse?
This sample app ("thoughtsite") for App Engine contains a pom.xml in its trunk:
http://code.google.com/p/thoughtsite/source/browse/#svn/trunk
But I don't know what command to run in Maven to set up ...
1
vote
2answers
593 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
...
1
vote
2answers
860 views
How can I clean _svn folders/files from 'src/main/webapp' folder when maven2 builds webapp project in netbeans 6.7?
I have created a webapp using maven2 archetype in netbeans 6.7.
when I do plain build(removing all the plugin configuration), it copies all the required files including the '_svn' folders. But I ...
0
votes
0answers
34 views
Maven – Modules and moduleSet VS dependency and dependencySets
We have installation folder that we use with maven to pack a release up,
This Installation folder has some static files, and a pom.xml
The build goal is to copy the static files to the target ...
0
votes
1answer
170 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
0answers
104 views
maven ear plugin not picking up application.xml
i am using jbosscc-seam-archtype 1.2 and i am putting the application.xml in ear project, under /src/main/application/META-INF/ but the maven-ear-plugin is not picking it up. any suggestion?
here is ...
0
votes
2answers
86 views
where to get hibernate jars from?
i dont know how many of you noticed http://repository.jboss.org/maven2 is down. where are you getting your jars from now?
for example if you want hibernate 3.5.6-Final, where do you get it from?
...
0
votes
1answer
63 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
74 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
0answers
76 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
4answers
102 views
How to handle the dependencies which are not present in the maven/spring repository?
I have an application whose dependencies are being handled by maven.I need to know, how can i handle the dependencies which are not present in the remote repository. I dont want to use a local ...
0
votes
2answers
334 views
how to configure maven to use jar files present on the system to satisfy dependency?
I need to configure the jars in my pom.xml file in my web application in such a way that I need not use the lib folder to store all the jar files.
Please help.
0
votes
2answers
513 views
Exception during Generating Java source from WSDL url
I am trying to generate java file from wsdlurl. some of them are working fine but some have problem in that.
here is the code.
<plugins>
<plugin>
...
0
votes
2answers
91 views
Maven equivalent to the Ant's propertyfile option
sorry for lamer question, but I really could not found subject.
I have a external to the pom.xml file, say backup.properties, and would like it load by next mvn run.
Any direction would be greatly ...
0
votes
1answer
102 views
Maven2 - POM configure issue in Windows
I'm trying to configure maven in my windows machine. My (webappDirectory) pom.xml is as follows
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
0
votes
2answers
240 views
What repositories do you put in a generic pom file?
I am building a generic parent pom file for my projects.
In that file, I would like to have a list of most common Maven repositories, in order to have most dependencies available in the sub-projects ...
0
votes
1answer
126 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
320 views
eclipse-maven project - NoClassDefFoundError running from eclipse but runs fine from command line
I am having issues runtime-resolving a jar file.
I used maven install:install and imported the jar file into my local maven repository.
Then included this jar file in my pom.xml.
...
0
votes
2answers
172 views
ha-jdbc dependency for maven 2
could someone please post me the maven 2 dependency for ha-jdbc and if there is any need to add extra repository?
0
votes
2answers
40 views
Maven structor - how shall i make this the right way?
I am sitting with a problem on how to structor a maven project.
This is the structur on the project
So I am able to build every project like bbbbb/pom.xml and so on. Fx the bbbb/pom.xml has a ...
0
votes
1answer
620 views
Maven Surefire Report Missing from Generated Site
I'm having a little difficulty in getting the surefire report to appear in the generated site. I run mvn clean site:site and the report is missing.
My pom.xml looks like this:-
<?xml ...
0
votes
1answer
516 views
pom.xml third party import issue
I am using ServiceMix 4, and am trying to modify the cxf-jaxrs demo. The following is my pom.xml
http://maven.apache.org/maven-v4_0_0.xsd">
<!--
Licensed to the Apache Software Foundation ...
0
votes
1answer
319 views
How to execute a jar from pom.xml
I want to create a build info file into the specific location of the project's target folder (especially in target/abc_project/META-INF folder) through maven-2.
Following is what I am doing in the ...
0
votes
1answer
340 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
3answers
79 views
Is it possible to use a file other than one named “pom.xml” for maven 2?
I googled around a bit and couldn't find any way to do it, but was wondering if I could have a project with multiple poms for various situations, then tell maven to use 'this' one or 'that' one.
The ...
0
votes
1answer
943 views
How to make maven site build the correct links to the project modules
I have a maven multimodule project when I try to build the site, it creates the links in the main page with the module name, but the href points to http://maven.apache.com
How do I make either mvn ...
0
votes
1answer
278 views
Resin's `pomegranate' - auto-magical-loading maven jar dependencies for a project - but how to generate jars with pom.xml for them?
Resin java server has a neat feature they call pomegranate ( http://www.caucho.com/projects/pomegranate/ ) which allows to just put various jar dependencies in server's directory (project-jars/) and ...
0
votes
3answers
3k views
“Cannot get the revision information from the scm repository”
I get maven error :
"Cannot get the revision information from the scm repository"
Any idea how to solve this ?
Thanks.
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?
...