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 my maven project setup as 1 shell projects and 4 children modules. When I try to build the shell. I get:

    [INFO] Scanning for projects...
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]   
[ERROR]   The project module1:1.0_A0 (C:\module1\pom.xml) has 1 error
[ERROR]     Non-resolvable parent POM: Failure to find shell:pom:1.0_A0 in http://nyhub1.ny.ssmb.com:8081/nexus/content/repositories/JBoss/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 5, column 11 -> [Help 2]

If I try to build a lone module I get the same error only replace module1, with whatever module it was.

Have them all referencing the parent in their poms.

    <parent>
    <artifactId>shell</artifactId>
    <groupId>converter</groupId>
    <version>1.0_A0</version>
</parent>

Here is the relevant parts of the shell pom:

<groupId>converter</groupId>
  <artifactId>shell</artifactId>
  <version>1.0_A0</version>
  <packaging>pom</packaging>
    <name>shell</name>


    <modules>
<module>module1</module>
<module>module2</module>
<module>module3</module>
<module>module4</module>
</modules>
share|improve this question

1 Answer

up vote 9 down vote accepted

Just for reference.

The joys of Maven.

Puting the relevative path of the modules to ../pom.xml solved it.

share|improve this answer
7  
Yes. Using Maven requires that you know what you do, trial and error won't get you very far. On the other hand there are several good references available. This is one. – Nicola Musatti Sep 30 '11 at 15:46

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.