Tagged Questions

Project Object Model

learn more… | top users | synonyms

18
votes
3answers
4k views

Migrating from Maven to SBT

As you know, SBT is compatible with Maven in some way -- SBT recognizes simple Maven POMs and can use dependencies and repositories specified in them. However, SBT wiki says that, if inline dependency ...
18
votes
7answers
21k 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 interested in using ...
8
votes
2answers
2k 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 out my code it will ...
7
votes
3answers
4k 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 the folder ...
5
votes
4answers
1k views

Maven repository for BIRT 2.6.0

Is there a Maven repository for BIRT 2.6.0 that I could point to?
5
votes
1answer
109 views

Is there an easy way to generate an Ant build script from a Maven POM?

We have a project that uses Maven as its build/dependency management tool. But our code needs to be compiled at our client's site and our client demands that we deliver build scripts written for Ant. ...
5
votes
3answers
470 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 find the answer?
4
votes
1answer
290 views

Is there a way to exclude a Maven dependency globally?

I'm trying to find a "generic" way of excluding a transitive dependency from being included without having to exclude it from all the dependencies that depend on it. For example, if I want to exclude ...
4
votes
2answers
484 views

maven2 - how to list all resources repository url from pom file

I'm looking for something like this: List<URL> urls = listURLFromPOM("c:\pom.xml"); .. http://repo1.maven.org/maven2/org/apache/ibatis/ibatis-core/3.0/ibatis-core-3.0.jar ...
4
votes
5answers
3k 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 quite groked it yet ...
4
votes
2answers
2k 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 resource. I tried: ...
4
votes
5answers
2k 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 the artifact is ...
4
votes
6answers
2k 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 configuration, common ...
4
votes
6answers
2k views

How do you edit Maven pom files?

I have recently started exploring Maven, but I feel a bit overwhelmed of all xml configuration in all the pom files. Are there any good tools i can use?
3
votes
1answer
32 views

Maven puts JAR-file into package, that is not diplayed when running mvn dependency:list/tree -Dverbose=true

We have an issue where hibernate-validator-3.0.0.ga.jar gets put into a warfile and due to a known incompatibility with a different hibernate-core version causes exceptions. The problem is, that ...
3
votes
2answers
552 views

Multiple Dependency Scopes in POM

I have a dependency in my POM that needs to be set to "provided" so it is not included at compilation, but it can still be referenced within my project. I would like the same dependency to have a ...
3
votes
4answers
885 views

Load Maven POM version number into Java Project

I want to add a version numbering to my Java application (in this case a Vaadin Portlet) which features the Version number in the help view. The thing is that that version number is the one defined ...
3
votes
2answers
492 views

Intellij/Maven Unit Test running issues

So I have issues running all the tests in my Maven project with Intellij. The reason for this is because a handful of modules are dependant on Native methods in a loaded dll. Since this dll can not ...
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
2answers
326 views

Solution for a jar file not findable in the `WEB-INF/lib` folder nor `src/main/resources` folder?

I have a Java application running on Jetty/App Engine/Spring. After removing some jar files from the pom and putting them in the WEB-INF/lib folder, they are no longer findable - I get numerous ...
3
votes
3answers
578 views

Resolving a Maven dependency differently if the JVM in use is x86 or x64?

I have a Maven repository set up to host some dlls, but I need my Maven projects to download different dlls depending on whether the JVM in use is x86 or x64. So for example, on a computer running ...
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
3answers
3k views

Maven 2.2.1 project inheritance: necessary to use packaging 'pom' even without the use of project aggregation (multimodule)?

I want to inherit the dependencies of a (parent) pom.xml in a child project i.e. use Project Inheritance. It seems it is necessary to change the default packaging type from 'jar' to 'pom' in this ...
3
votes
2answers
2k views

In Maven2, what's the simplest way to build a WAR and the EAR to contain that WAR in a single POM?

Situation is pretty straightforward. I have a Java webapp that I'm converting to be built with Maven. At present, the app is built with Ant into a single WAR file, which is then bundled into an EAR ...
3
votes
2answers
509 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 deployed via the Maven Ant ...
3
votes
2answers
2k views

Maven Super POM

I'm new to Maven and working on creating a build for my company. We don't want to connect out to the Maven Central Repository, and we have a different directory structure for src and test code than ...
3
votes
3answers
1k 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 child and removes ...
3
votes
1answer
2k views

How to deploy a WAR onto an existing Tomcat 6 instance using Cargo?

I installed Tomcat using the Windows installer ages ago and it runs fine as a service on my development laptop. Now I'm mavenising my project and would like to use Cargo (or something similar) to ...
2
votes
1answer
39 views

How do I upgrade maven.xml to pom.xml?

I'm working with the 1.14.4 branch of Heritrix and I'm unfortunately for the time being stuck in that branch.. The problem I'm encountering is, its maven.xml is dependent upon Maven 1.1 which is so ...
2
votes
2answers
42 views

Where do people put licence information in Maven projects?

What are the usual places where people put information about projects' licenses beside POM's license tag? Also I'm interested in unusual ones.
2
votes
1answer
66 views

Problems initilicing EJB3Configuration Maven Hibernate JPA Spring

Im using Maven JPA(hibernate) and spring3 in my project! im having a new problem with my pom and the related dependencies ... Its seems im having problem with the diferent version of the dependencies ...
2
votes
0answers
108 views

mvn install looks for tools.jar nested too deep within my java directory

On ubuntu 11.10, with maven2, here's the error code: Unable to locate the Javac Compiler in: /usr/lib/jvm/java-6-sun-1.6.0.26/../lib/tools.jar Not sure why it's adding the ".." in the path? My ...
2
votes
1answer
82 views

Integrating SmartGWT in Gerrit (Maven project)

I want to add some feature to this project and I need smartgwt for all those fancy UI stuff. I modified the pom.xml to add the dependencies (smartgwt2.4 and skins). <dependency> ...
2
votes
1answer
138 views

M2E: Version is duplicate of parent version - Why is this a warning?

I have several Maven projects that each have some common functionality or at least common configuration/dependencies. I extracted this in to a common pom.xml, and then modularlized several facets, for ...
2
votes
1answer
105 views

Can jboss-web.xml have access to properties?

I am trying to setup my project to use different virtual-host names depending on the environment. I know I could create directories with a separate jboss-web.xml file in each directory. But I ...
2
votes
3answers
47 views

Why Maven is looking for .pom file when .jar is present in the repository?

I have the following dependency in my pom.xml <dependency> <groupId>aGroup</groupId> <artifactId>anArtifact</artifactId> ...
2
votes
2answers
2k views

Error opening Maven POM file dependency hierarchy in Eclipse - “Project read error”

When I open a POM file and click on the "Dependency Hierarchy" tab at the bottom, it gives me the error, "Project read error". It works with other projects in the same workspace, just not with this ...
2
votes
1answer
145 views

get all dependencies for a maven project

hi is there a simple way i can get all dependencies for a maven project using java ( not the mvn console) or whats the algorithm used in mvn ? Thanks Ive found Model (org.apache.maven.model) The ...
2
votes
1answer
2k views

POM dependencies not working (Eclipse, Maven, POM)

I have a project in Eclipse (Helios), with Maven pom.xml. My project is a web app that will use Hibernate, MySQL. But i have endless woes in getting pom.xml right. I am new to maven, and can't ...
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
0answers
294 views

Can I avoid a dependency cycle with one edge being a test dependency?

Consider a testCycle parent with modules DummyCore and TestFramework. TestFramework depends on DummyCore, and DummyCore has a test dedepency on TestFramework. Building and testing each module ...
2
votes
3answers
493 views

Maven:install jar file during build process

I have got a requirement as follows. I need to run ant build file during maven build process. I need to invoke the build.xml from my pom.xml file. I have done that using maven-antrun-plugin. Now I ...
2
votes
3answers
321 views

How to share POM fragments between different POMs

I am currently struggling with Maven ... I have a complex project made of several nested modules. For some of those modules, I have similar configurations in the POMs. I would like to make it clean. ...
2
votes
2answers
4k views

How to figure out the jars that the dependencies in the maven's pom.xml depend on?

I am very interested in how I can find out what are the jars that the dependences in the maven's pom.xml depend on. I am used to doing the adding of libraries (jars) myself in my web application ...
2
votes
1answer
131 views

Is there a way for a Maven project to inherit report configurations from a pom dependency?

I know that it's possible to configure the section in a parent POM and have it apply to the sub-modules in a multi-module project. However, I'd like to have a separate POM to reference as a ...
2
votes
1answer
415 views

How to replace backslashes to slashes for ${basedir} property in maven profile profile

I have a pom.xml with defined property module.basedir that is intended to contain transformed basedir property. It is defined as follows: <properties> ...
2
votes
1answer
314 views

Maven checksum pom setting?

Google has failed me and I can't find an answer even here on SO - relegating me to actually posting my first question here. I'm trying to get the command "mvn install" to automatically generate the ...
2
votes
1answer
188 views

Maven Pom files organisation

I have two independent gwt based projects using pom aggregation , so four projects(or modules) in total. Tree looks like this . Reactor1(just pom.xml) |-- war1 (gwt related stuff) `-- jar1 ...
2
votes
2answers
1k views

Maven: property substitution not done for /project/version tag of pom?

http://maven.apache.org/pom.html#Properties says property "values are accessible anywhere within a POM". Should this read "are accessible in most places within a POM"? I can specify the version of a ...
2
votes
1answer
740 views

Maven - POM: How to make the jetty port changeable so that it can be retrieved later?

I'm working on an integration test suite and I've got a question for you. My parent pom defines the use of the jetty plugin with the goal: run-war. I need to make the port that jetty listens on ...

1 2 3 4