| Hi anyone,  
 
 I build an eclipse product with a headless application with tycho. Therefore I have created a project that contains a .product file and a pom.xml in this project:  
 
   <plugin>         <groupId>org.eclipse.tycho</groupId>         <artifactId>tycho-p2-director-plugin</artifactId>         <version>${tycho.version}</version>         <executions>           <execution>             <id>materialize-products</id>             <goals>               <goal>materialize-products</goal>             </goals>           </execution>           <execution>             <id>archive-products</id>             <goals>               <goal>archive-products</goal>             </goals>           </execution>         </executions>       </plugin> 
 
 
 
 
 
 and a seperate parent project which contains:  <plugin>                 <groupId>org.eclipse.tycho</groupId>                 <artifactId>target-platform-configuration</artifactId>                 <version>${tycho.version}</version>                 <configuration>                     <environments>                         <environment>                             <os>linux</os>                             <ws>gtk</ws>                             <arch>x86_64</arch>                         </environment>                                                  <environment>                             <os>win32</os>                             <ws>win32</ws>                             <arch>x86_64</arch>                         </environment>                         <environment>                             <os>macosx</os>                             <ws>cocoa</ws>                             <arch>x86_64</arch>                         </environment> 	 			…… 
 
 
 
 
 
 But ihave the problem, that the platform dependent org.eclipse.jdt.launching (e.g. org.eclipse.jdt.launching.macosx) is not added to plugins, even if I have a dependency to org.eclipse.jdt.launching added to my product.  
 
 Can you please tell me, what I have to configure to get these plugins added automatically into my target product?  
 
 Thanks in advance  Cheers Markus 
 
  |