Re: [tycho-user] Maven assembly issue
Am 23.03.2016 um 16:46 schrieb Christelle BURGUERA: > I upgraded for 2.5.4 and nothing change ! > Where do I change the version ? perhaps I miss something .... > > I've a zip.xml like this...
View Article[tycho-user] Create MSI product installer
Hello, is it possible to create an MSI product installer with tycho? If not, can you give me a tip how to achieve that. -- Mit freundlichen GrÃÃen / Best regards, Aleksandar Toshovski
View ArticleRe: [tycho-user] Create MSI product installer
Tycho does not support the creation of MSI installers. On 16-03-23 01:19 PM, Aleksandar Toshovski wrote: Hello, is it possible to create an MSI product installer with tycho? If not, can you give me a...
View ArticleRe: [tycho-user] Create MSI product installer
We use the materialize-products and archive-products goals to create a .zip file of our built product. Then we have a separate build job that uses NSIS to create a Windows installer from the .zip file....
View ArticleRe: [tycho-user] Create MSI product installer
We do the same but with "WIX" [1] ... In the past NSIS did not create MSI files, WIX does. So if you require an MSI, instead of a "setup.exe" I would suggest having a look at it. Jens [1]...
View ArticleRe: [tycho-user] Maven assembly issue
Yes ! Thank you :) I have to add the version under the pom ! et not on the zip.xml Thank you -----Original Message----- From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-bounces@xxxxxxxxxxx] On...
View Article[tycho-user] Can not resolve optional dependencies with eclipse-repository
Hi All,When running Tycho's eclipse-repository Tycho could not resolve some dependencies which is required optionally by a feature bundle.This problem did not arise when running eclipse-feature which...
View Article[tycho-user] Tycho to support location other than software sites
Hi all,Are there any plans for Tycho to support locations other than software sites ?Regards,Setya
View ArticleRe: [tycho-user] Create MSI product installer
When switching to MSI, be aware that you can no longer install the same product multiple times on a machine. This has been a killer for our "copy-paste" Eclipse based installation, so we use NSIS quite...
View Article[tycho-user] Include the product plugin in the update site
Hi,I want to include the product plugin in an update site but Tycho 0.24 won't let me. I have been searching for a couple of hours.Below you see that the product is build (eclipse-repository) but it...
View Article[tycho-user] How to get access to "StructuredTextEditor" in my plugin, and...
I'm working with an existing Eclipse plugin codebase that I'm still learning how to work on. I've actually managed to implement some fixes and get them integrated, but I'm having an issue with the next...
View ArticleRe: [tycho-user] How to get access to "StructuredTextEditor" in my plugin,...
Hi,plugin.xml declares extensions, not dependencies.What you are looking for is either Require-Bundle or Import-Package directives in META-INF/MANIFEST.MF.Require-Bundle lists bundles (plugins) that...
View ArticleRe: [tycho-user] How to get access to "StructuredTextEditor" in my plugin,...
On 03/29/2016 10:37 AM, Anton Tanasenko wrote: Hi, plugin.xml declares extensions, not dependencies. What you are looking for is either Require-Bundle or Import-Package directives in...
View ArticleRe: [tycho-user] Can not resolve optional dependencies with eclipse-repository
Hi Setya,Even if they are optional, Tycho and compiler still require them. So add a repo that contains the optional dependencies.Cheers,WimOn Thu, Mar 24, 2016 at 1:44 PM, Setya Djajadinata...
View ArticleRe: [tycho-user] Include the product plugin in the update site
I guess you are talking about a .product file (not a plugin). Hard to tell without more details about your build but .product files are included directly in eclipse-repository modules, see [1]. I think...
View ArticleRe: [tycho-user] Include the product plugin in the update site
The product plugin (it has a plugin.xml and MANIFEST.MF) indeed contains the .product file but also contains the splash screen and other artifacts. In its pom it has eclipse-repository as pack. type. I...
View ArticleRe: [tycho-user] Include the product plugin in the update site
Hi Wim, For that I started to create a new project that only contains the product file and the pom.xml. With this separation everything works as intended. Greez, Dirk Am 30.03.2016 14:51 schrieb "Wim...
View ArticleRe: [tycho-user] Include the product plugin in the update site
Thanks Dirk. That is a good idea.On Wed, Mar 30, 2016 at 3:54 PM, Dirk Fauth <dirk.fauth@xxxxxxxxx> wrote:Hi Wim, For that I started to create a new project that only contains the product file...
View Article[tycho-user] Define target-platform-configuration in child pom
Hello, I would like to define a target platform configuration to a child pom using a profile. I got a parent pom which is defining lots of things for the main compilation and in the child I would...
View ArticleRe: [tycho-user] Create MSI product installer
This is true. But you can have multiple versions in parallel of the same product.
View Article