Como usar a mesma plataforma de destino em vários subprojetos em Tycho

É possível usar o mesmo arquivo .target para cada subprojeto maven?

Snippet do arquivo .pom pai

<groupId>root.server</groupId>
<artifactId>root.server</artifactId>

Snippet do arquivo .pom filho

<groupId>child.project</groupId>
<artifactId>child.project.parent</artifactId>

                <target>
                    <artifact>
                        <groupId>root.server</groupId>
                        <artifactId>root.server</artifactId>
                        <version>${project.version}</version> 
                        <classifier>targetfile</classifier>
                    </artifact>
                </target>

Quando eu tento um "mvn clean install" no projeto filho, recebo uma exceção:Could not resolve target platform specification artifact. Quando eu tento um "mvn clean install" no pai do projeto filho, tudo funciona bem.

Existe uma maneira de reutilizar um arquivo .target para todos os projetos (pai + subprojetos)?

questionAnswers(1)

yourAnswerToTheQuestion