How to use the same target platform multiple sub-projects in Tycho
问题 Is it possible to use the same .target file for every maven subproject? Snippet from the parent .pom file <groupId>root.server</groupId> <artifactId>root.server</artifactId> Snippet from child .pom file <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> When I try a "mvn clean install