Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Customizing .eclipseproduct

Hello,

When I build my product I want to populate properties of
.eclipseproduct to match that of product definition. I added
product-export goal in my POM:

<plugin>
   <groupId>org.eclipse.tycho</groupId>
   <artifactId>tycho-packaging-plugin</artifactId>
   <version>${tycho-version}</version>
   <executions>
      <execution>
         <phase>package</phase>
         <goals>
            <goal>product-export</goal>
         </goals>
      </execution>
   </executions>
   <configuration>
      <archiveSite>true</archiveSite>
      <productConfigurationFile>iit.product</productConfigurationFile>
   </configuration>
</plugin>

Is this the right way to alter .eclipseproduct or do I need to do
something else?

Thanks,
Alex


Back to the top