Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a few maven projects which share some common settings - repositories, plugins and common dependencies, from the parent pom.xml.

I want to move the child projects now to separate svn location, so that they can have their own life cycle , of tags, branches and trunk. But if I move the subprojects from the directory structure, I will have to rewrite the entire common pom.xml in all the projects.

Is there a better way of handling this, so that the sub projects can still share a common parent pom.xml without residing next to each other (as folders).

share|improve this question

2 Answers

up vote 1 down vote accepted

I don't know why you have to explicitly reference the parent pom file.

What I do usually is have the parent pom as a project like so:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.blah.commons</groupId>
    <artifactId>project-standards</artifactId>
    <name>Common Standards</name>
    <packaging>pom</packaging>
    <version>1.0-SNAPSHOT</version>
...

Note the <packaging>pom</packaging> element

and in each project/module, would depend on the standards pom.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
        http://maven.apache.org/maven-v4_0_0.xsd">

    <parent>
        <groupId>com.blah.commons</groupId>
        <artifactId>project-standards</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <groupId>com.blah.project</groupId>
    <artifactId>xyz-core</artifactId>
    <packaging>jar</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>project xyz core module</name>
...

Note the <parent> element.

share|improve this answer

I assume that you have defined a parent pom.xml like this:

<parent>
  <groupId>my.group</groupId>
  <artifactId>name</artifactId>
  <version>0.1.3-SNAPSHOT</version>
  <relativePath>../pom.xml</relativePath>
</parent>

Just remove the element <relativePath/>, then the parent is accessed like all other dependencies, either from your local repository or your own nexus repository. Thus the relative path is not necessary, this does not depend on directory structures.

share|improve this answer
+1 This is the answer. Just keep in mind that you will need to give the parent project it's own mvn deploy job so that it is installed into your repository, it won't get their on its own. – Jesse Webb Jun 6 '11 at 18:56
ah yes this should work. But if I check in my parent pom in my local repository (artifactory). I will have to add the repository settings (of the local repo.) in all the sub projects. Any way I can avoid doing that? – sheki Jun 7 '11 at 4:57
1  
@Sheki I've never worked with artifactory, but if it's your local repository, the artifact should be found automaticaally? If not, it may be configured in your .m2/settings.xml. – Thor Jun 7 '11 at 10:00
Thanks, Did not know I could define a local repo. in .m2/settings.xml. – sheki Jun 7 '11 at 10:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.