Maven2 ne peut pas trouver des parents de chemin relatif

Je suis en train d'utiliser Maven2, mais mon enfant ne peuvent pas trouver le projet parent.

Structure de répertoire est comme suit:

--parent
  --pom.xml
--child
  --pom.xml

Enfant pom.xml fichier ressemble à ceci:

<parent>
    <groupId>com.mycompany.app</groupId>
    <artifactId>myapp</artifactId>
    <version>${app.version}</version>
    <relativePath>.../parent/pom.xml</relativePath>
</parent>

Cependant quand j'utilise maven il n'a même pas l'impression de regarder dans le chemin d'accès relatif, il semble à essayer de le télécharger à partir du référentiel. Il n'est évidemment pas dans le repo. Je veux qu'il regarde le chemin d'accès relatif. Ce que je fais mal? Voici le message d'erreur:

[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/com/mycompany/app/myapp/${app.version}/myapp-
${app.version}.pom
[INFO] Unable to find resource 'com.mycompany.app:myapp:pom:${app.version}' in reposit
ory central (http://repo1.maven.org/maven2)
[INFO] ------------------------------------------------------------------------
[ERROR] FATAL ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).


Project ID: null:web:jar:null

Reason: Cannot find parent: com.mycompany.app:myapp for project: null:web:jar:null for
 project null:web:jar:null
InformationsquelleAutor vagabond | 2010-03-05