Community
Participate
Working Groups
Build Identifier: 1.0.1.R37x_v20110907 feature.xml does not specify provider name. See: http://git.eclipse.org/c/equinox/rt.equinox.bundles.git/tree/features/org.eclipse.equinox.core.feature/feature.xml There is: <?xml version="1.0" encoding="UTF-8"?> <feature id="org.eclipse.equinox.core.feature" label="%featureName" version="1.1.0.qualifier" license-feature="org.eclipse.license" license-feature-version="1.0.0.qualifier"> There should be: <?xml version="1.0" encoding="UTF-8"?> <feature id="org.eclipse.equinox.core.feature" label="%featureName" version="1.1.0.qualifier" provider-name="%providerName" license-feature="org.eclipse.license" license-feature-version="1.0.0.qualifier"> If I generate jnlp file for that feature I'm getting following definition: <?xml version="1.0" encoding="UTF-8"?> <jnlp spec="1.0+" codebase="$$codebase"> <information> <title>Equinox Core Function</title> <offline-allowed/> </information> <security> <all-permissions/> </security> <component-desc/> <resources> <j2se version="1.5+" /> </resources> <resources> <jar href="../plugins/org.eclipse.osgi_3.7.1.R37x_v20110808-1106.jar"/> <jar href="../plugins/org.eclipse.osgi.services_3.3.0.v20110513.jar"/> <jar href="../plugins/org.eclipse.equinox.common_3.6.0.v20110523.jar"/> <jar href="../plugins/org.eclipse.equinox.ds_1.3.1.R37x_v20110701.jar"/> <jar href="../plugins/org.eclipse.equinox.util_1.0.300.v20110502.jar"/> <jar href="../plugins/org.eclipse.core.jobs_3.5.100.v20110404.jar"/> <jar href="../plugins/org.eclipse.equinox.registry_3.5.101.R37x_v20110810-1611.jar"/> <jar href="../plugins/org.eclipse.equinox.simpleconfigurator_1.0.200.v20110502-1955.jar"/> <jar href="../plugins/org.eclipse.equinox.app_1.3.100.v20110321.jar"/> </resources> </jnlp> which is incorrect because it does not contain vendor element. Reproducible: Always
Created attachment 213438 [details] Proposed patch Added provider-name="%providerName" to feature.xml
Patch released in commit: http://git.eclipse.org/c/equinox/rt.equinox.bundles.git/commit/?id=2fcb864150c28b210b6a7ff6a9202ef10af4ca19 Thanks.