Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
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
1answer
794 views

m2Eclipse dependencyManagement section doesn't show graph

I don't know if this is a bug or intended functionality, but the POM editor for m2Eclipse has a wonderful graph representation ('Dependency Graph' tab) and tree ('Dependency Heirarchy' tab) if 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
411 views

Maven failure to find maven-plugins:maven-cobertura-plugin

I try to compile maven web project with <dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws</artifactId> ...
4
votes
2answers
1k views

Is there a Java Class that generates a POM.xml file?

In my job project I have recently been asked to generate POM files via a java class. The problem is that I am very, very new to Maven (like since last December). What I need is a somehow code that ...
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
1answer
194 views

IntelliJ - Convert a Java project/module into a Maven project/module

I have a project on Bitbucket. Only the sources are committed. To retrieve the project onto a new machine, I used Version Control > Checkout from Version Control from within IntelliJ. It then asks ...
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
230 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
180 views

why Buildr fails?

I've got this in my pom.xml: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
2
votes
3answers
100 views

Maven does not see some text files I'm using within my unit tests

I'm getting my feet wet with maven, but it's a steep learning curve. I'm trying to load plain text files from within a unit test. The tests passed, now I've converted the project to a maven project, ...
2
votes
1answer
121 views

trying to override dependency of Apache Tika 0.9 from PDFBOX 1.4.0 to PDFBOX 1.6.0

<dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parsers</artifactId> ...
2
votes
1answer
201 views

Look up hostname from Maven

I'm looking for a way to look up hostname and set it as a property in Maven. This does not work in all environments: ... <properties> <hostname>${env.HOSTNAME}</hostname> ...
2
votes
1answer
344 views

Eclipse Indigo missing POM Editor preferences

I use eclipse Indigo. I installed from market place (Help -> MarketPlace...) Maven Integration for Eclipse. Everything is ok, but pom editor has only a few tabs (Overview, Depedencies, Depedency ...
2
votes
1answer
337 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
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> ...
2
votes
2answers
812 views

How to generate Java source from WSDL in Pom.xml?

I have a pom file which is generating source from WSDL files which is design something like this. <executions> <execution> <id>Id1</id> ...
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
528 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
2answers
43 views

Maven - Unresolved references to [javax.activation, javax.annotation]

I'm developing web application with OSGI. I have a maven configuration error which I cannot find. This is the complete source code: http://uploading.com/files/8e5c9888/SH_27_test.zip/ This is the POM ...
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
1answer
94 views

The POM for com.google.code.morphia:morphia:jar:1.00-SNAPSHOT is missing, no dependency information available

The POM for com.google.code.morphia:morphia:jar:1.00-SNAPSHOT is missing, no dependency information available <scm> ...
1
vote
1answer
50 views

How can I create an executable jar without dependencies using Maven?

I want to package it not in a single executable jar for distribution. I need an executable to be something like main.jar and all dependencies to be in lis/XXX.jar How can I make maven executable jar ...
1
vote
1answer
33 views

How to configure Maven project to not expect resources directory in Eclipse

I do not have any resources for my Maven project so I want to stop Maven expecting these directories and so remove these Java Build Path Problems in Eclipse, Project 'XXX' is missing required source ...
1
vote
0answers
110 views

Maven: Profile activation depending on localRepository property?

in Maven I want to execute a build only if the artifact has not yet been installed to the repository. My idea is to use a profile which is inactive by default, but will be activated if the artifact is ...
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
0answers
47 views

Update pom in nexus repository

I have updated to my 3rd party repo an artifact with an invalid pom (missing modelVersion tag). How can I (without re-uploading the artifact) update my POM ? Is it possible to directly edit it on ...
1
vote
1answer
1k views

Project build error: Non-resolvable parent POM in maven

Project build error: Non-resolvable parent POM guide.ide.eclipse:guide-ide-eclipses:1.0-SNAPSHOT for guide.ide.eclipse:guide-ide-eclipse:0.0.1-SNAPSHOT: Failed to resolve POM for ...
1
vote
2answers
306 views

Eclipse 3.7, m2eclipse & losing artifacts after changing pom.xml

I have a bit of a problem with Eclipse and Maven for a few months. After changing the pom.xml, Eclipse is losing all artifacts and getting this exception in my Maven console: Missing artifact ...
1
vote
2answers
515 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
55 views

Can i add Aspect J jar into a Maven project through pom.xml?

i was wondering whether i can add Aspect J to a Maven project because there doesn't seem to be a public repository for it to be added to pom.xml. <dependency> ...
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
1answer
92 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
365 views

Eclipse | Maven newby question

I'm trying to import a maven project into Eclipse. I'm using Helios. I've downloaded m2eclipse. I've imported the project. But I'am having so much troubles to compile the project. The full project ...
1
vote
1answer
630 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
196 views

Ivy resolve multi module apache maven POM.xml

If i have multi module project written in maven pom.xml in this architechture pom.xml -main ---module1/pom.xml ---module2/pom.xml and main pom.xml looks like this ...
1
vote
3answers
7k views

Hudson build fail: Non-resolvable parent POM

I used to work with Hudson on my project, and lately I had to move it to a new server. I configured it the exact same way it use to be (for all I can tell) but when I try to launch a build, it fails ...
1
vote
2answers
150 views

How to activate a pom.xml iff the os is not of a given family (eg. mac)?

From Maven's website: ... <profiles> <profile> <id>default-tools.jar</id> <activation> <property> ...
1
vote
2answers
268 views

Generating new sources via Maven plugin after compile phase

I have a Maven project within which I need execute two code generation steps. One generates some Java types, then the second depends on those Java types to generate some more code. Is there a way to ...
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
2answers
388 views

Programmatically generating pom.xml

I am creating a new maven project from an eclipse plugin. As it seems to me a bad idea to hardcode pom.xml to my plugin. Is there any way to generate this programmatically such that the plugin will be ...
1
vote
1answer
379 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
2k views

Change properties in pom.xml at runtime with Maven Ant Tasks. Is it Possible?

I have the following use case: My application is started with an Ant Script, which asks the user several questions about the project configuration (database settings etc.). These settings are stored ...
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 ...
1
vote
2answers
859 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 ...

1 2 3