Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Missing provider for product in About dialog



> From: "Keppler Michael (ETAS/ESW4)" <Michael.Keppler@xxxxxxxx>

> To: "tycho-user@xxxxxxxxxxx" <tycho-user@xxxxxxxxxxx>,
> Date: 06/24/2015 11:12 AM
> Subject: [tycho-user] Missing provider for product in About dialog

> Short: The provider column of each of my Tycho built products is
> empty (on the “Installation details” page).


I've found one way that works is to put in the <product>.p2.inf file for the *product*. See Bug 458896 and it's original Bug 361033.

Such as for Eclipse SDK, I used

# Set the product property type
properties.0.name = org.eclipse.equinox.p2.type.product
properties.0.value = true

properties.1.name = org.eclipse.equinox.p2.description
properties.1.value = Initial Mars Release of the Eclipse SDK.

properties.2.name = org.eclipse.equinox.p2.provider
properties.2.value = Eclipse.org

(you may not need the initial properties.0 set ... that was
there before I tried to solve the provider-name-missing issue,
so I just left it.)


Back to the top