Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] application.ini file not created

Yes adding eg. -console to the program arguments does produce a *.ini
file. I would like to create an empty file, this could be done using
some maven plugin during build though.


On Tue, Oct 25, 2011 at 11:20 AM, Sievers, Jan <jan.sievers@xxxxxxx> wrote:
> with packaging type eclipse-repository, the .ini file next to the launcher should be generated.
> However it seems this only happens if you provide e.g. VM args or program args in your .product file which should end up there.
> See the "Launching" tab of the .product editor.
>
> E.g. a product file with
>
>   <launcherArgs>
>      <programArgs>-consoleLog</programArgs>
>      <vmArgs>-Xmx512m</vmArgs>
>   </launcherArgs>
>
> will produce eclipse.ini with content
>
> -consoleLog
> -vmargs
> -Xmx512m
>
> What tycho does internally is use the p2 product publisher to publish the product and then use the p2 director to install it.
> If PDE build behaves differently we usually suspect it does some additional post/pre-processing magic in the generated ant files.
>
> Can you achieve the same eclipse.ini content as produced by PDE by tweaking the .product file?
>
> Regards,
> Jan
>
> -----Original Message-----
> From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-bounces@xxxxxxxxxxx] On Behalf Of motes motes
> Sent: Dienstag, 25. Oktober 2011 10:56
> To: Tycho user list
> Subject: [tycho-user] application.ini file not created
>
> When I build my product with PDE-Build a application.ini file is
> created next to the application.exe file. But when I build my product
> with tycho this *.ini file is not produced. Do I need to manually
> setup something to create this file?
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user
>


Back to the top