Skip to main content

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

This is the wrong (deprecated) approach of building products.

Use the eclipse-repository packaging type instead as documented here: http://wiki.eclipse.org/Tycho/Packaging_Types#eclipse-repository

Regards
Tobias


> -----Original Message-----
> From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-
> bounces@xxxxxxxxxxx] On Behalf Of Alex Kravets
> Sent: Freitag, 4. Januar 2013 20:15
> To: Tycho user list
> Subject: [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
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top