Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [equinox-dev] Generated configuration file overwrites specified properties

The config.ini and eclipse.ini files are updated by p2 because they often need to change when new stuff is installed or existing bundles are update

1. Still I find it strange, that although the config.ini is regenerated, it ignores and overwrites my initial settings (eclipse.product and asgi.splashPath).

2. As alternative I have created the p2 meta data, by calling the generator on my installed tree of plugins and features:

eclipse -application org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher -metadataRepository file:/temp -artifactRepository file:/temp -bundles plugins -features features -publishArtifacts (as described at http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/p2_publishingtasks.htm)

Two files get created artifact.xml and content.xml and I have copied them to my product's eclipse directory. I did remove the config.ini from the configuration directory and I tried to restart the product. I get the attached log file; it lists all kind of unresolved warnings and one application error: No application id has been found.

3. Unfortunately the examples still fail to build:

publishMylyn:
[unzip] Expanding: C:\galileo-3.5.2\workspace\adt.builder\downloads\mylyn.zip into C:\galileo-3.5.2\workspace\adt.builder\downloads\mylyn

BUILD FAILED
C:\galileo-3.5.2\workspace\adt.builder\buildADT.xml:34: The following error occurred while executing this line: C:\galileo-3.5.2\workspace\adt.builder\buildADT.xml:19: Problem: failed to create task or type p2.publish.featuresAndBundles
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.

Thanks for your patience,
Richard

Andrew Niefer wrote:

I updated the examples, one of the links they are downloading from was out of date.

Yes, if you have metadata for your own product then this problem would be solved. The config.ini and eclipse.ini files are updated by p2 because they often need to change when new stuff is installed or existing bundles are updated.

If you already have a build process which produces your features and plugins, it should be simple to modify the "ADT Part 2" example to package them together with the CDT & Eclipse Platform into a product. In that example the "adt.feature.builder/product/adt.product" describes the product. You can search for references to "mylyn" and replace those with your own feature. Alternatively this example can also build your feature directly if you were to replace the "adt.feature".

-Andrew



From: 	Richard Horbach <richard.horbach@xxxxxxxxxx>
To: 	Equinox development mailing list <equinox-dev@xxxxxxxxxxx>
Date: 	03/24/2010 07:10 AM
Subject: Re: [equinox-dev] Generated configuration file overwrites specified properties
Sent by: 	equinox-dev-bounces@xxxxxxxxxxx


------------------------------------------------------------------------



We have a different model of building and installing the product. We do
not use ant nor the Eclipse environment to build the product. For
installing required items, we do not depend on Eclipse.

Our (GUI) product -part of a complete C Compiler toolchain- is build on
top of Eclipse and CDT. The plugins are build from the command line,
using the java compiler and the jar program. The complete Compiler
product is installed using install shield. All plugins, including CDT
and Eclipse platform plugins, are installed at installation time in the
plugins directory, no need for downloading or updating. We ship a
feature.xml file in the features/myproduct directory, that sums up all
self developed plugins. Furtermore we supply an eclipse.ini and the
config.ini, the one I mentioned earlier, in the configuration directory.
These files are not generated, but put together manually.
That is basically all. Until now it was not necessary to create p2
metadata (and admittedly, we did not investigate the p2 mechanism very
thorough yet), so we have no metadata available for our product, just
the feature.xml.

I want to avoid that the configuration settings are regenerated, and
that the org.eclipse.platform.ide product is used. If I have the p2
metadata available, than this problem would be solved, right?

(FYI: the examples you are referring to, do not build anymore.)

Thanks,
Richard

Andrew Niefer wrote:
>
> How did you build this product?
> The metadata for the product generally specifies the settings for
> these properties.
>
> Here it looks like you are getting the settings that are specified by
> the org.eclipse.platform.ide product.  Are you just taking the
> platform.ide and copying your stuff over top of it?
> It sounds like the p2 metadata just has the platform.ide settings, on
> first start p2 discovers the bundles you copied on top of everything
> reconciles the install for you, this would cause the configuration
> settings to be regenerated.
>
> I would suggest taking a look at these two examples I wrote last year:
> http://aniefer.blogspot.com/2009/07/composing-and-updating-custom-eclipse.html
>
> http://aniefer.blogspot.com/2009/07/adt-part-2-more-like-epp.html
>
> It is probably simplest to build things as described in the second
> post (ADT part 2: More like the EPP), though it would be good to read
> the first post as well.  They both contain references to examples in
> cvs that you can download and run.
>
> -Andrew
>
>
> From:                  Richard Horbach <richard.horbach@xxxxxxxxxx>
> To:                  equinox-dev@xxxxxxxxxxx
> Date:                  03/23/2010 10:01 AM
> Subject: [equinox-dev] Generated configuration file overwrites
> specified        properties
> Sent by:                  equinox-dev-bounces@xxxxxxxxxxx
>
>
> ------------------------------------------------------------------------
>
>
>
> We start our product, based on Eclipse, with our own splash screen. In
> the configuration directory we therefore have specified the following
> properties in the config.ini file:
> - eclipse.product=com.mycompany.myproduct.ide
> - osgi.splashPath=platform\:/base/plugins/com.mycompany.myprod uct
> - osgi.configuration.area = @user.home/.eclipse/configuration
>
> When starting the product for the very first time, the proper splash
> screen shows up. Therefore, the local config.ini file was read and
> parsed correctly. When closing the application again, a new created
> configuration file is written (written by EquinoxFwConfigFileParser) to
> the location specified in 'osgi.configuration.area'. This generated
> config.ini file however, contains wrong/overwritten properties:
> - eclipse.product=org.eclipse.platform.ide
> - osgi.splashPath=platform\:/base/plugins/org.eclipse.platform
>
> If I now restart the product for a second/next time, the default Eclipse
> splash screen is shown; The setting in the configuration area apparently
> takes precedence over the local setting.
>
> I have this problem since I switched over from Eclipse 3.5.0 to version
> 3.5.2. In Eclipse 3.5.0 this mechanism worked well, since no entries for
> 'eclipse.product' and 'osgi.splashPath' were written back.
>
> Should I log a bug in bugzilla for this issue, or could there be
> something wrong with my configuration?
>
> Regards,
> Richard Horbach
> _______________________________________________
> equinox-dev mailing list
> equinox-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/equinox-dev
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> equinox-dev mailing list
> equinox-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/equinox-dev
>
_______________________________________________
equinox-dev mailing list
equinox-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/equinox-dev


------------------------------------------------------------------------

_______________________________________________
equinox-dev mailing list
equinox-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/equinox-dev

!SESSION 2010-03-25 12:22:15.027 -----------------------------------------------
eclipse.buildId=unknown
java.version=1.6.0_12
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments:  -os win32 -ws win32 -arch x86

!ENTRY org.eclipse.equinox.p2.reconciler.dropins 4 0 2010-03-25 12:22:15.542
!MESSAGE 
!STACK 0
org.osgi.framework.BundleException: The bundle could not be resolved. Reason: Missing Constraint: Require-Bundle: org.eclipse.equinox.p2.touchpoint.eclipse; bundle-version="1.0.0"
	at org.eclipse.osgi.framework.internal.core.AbstractBundle.getResolverError(AbstractBundle.java:1313)
	at org.eclipse.osgi.framework.internal.core.AbstractBundle.getResolutionFailureException(AbstractBundle.java:1297)
	at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:309)
	at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:370)
	at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1068)
	at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:557)
	at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:464)
	at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:248)
	at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:445)
	at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)
	at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:337)

!ENTRY org.eclipse.osgi 4 0 2010-03-25 12:22:16.011
!MESSAGE Application error
!STACK 1
java.lang.RuntimeException: No application id has been found.
	at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:236)
	at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559)
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514)
	at org.eclipse.equinox.launcher.Main.run(Main.java:1311)

!ENTRY org.eclipse.osgi 2 0 2010-03-25 12:22:16.074
!MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.074
!MESSAGE Bundle reference:file:plugins/org.eclipse.equinox.p2.console_1.0.100.v20090520-1905.jar was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.console 2 0 2010-03-25 12:22:16.074
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.configurator_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.074
!MESSAGE Bundle reference:file:plugins/org.eclipse.equinox.p2.ui_1.0.101.R35x_v20090819.jar was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.ui 2 0 2010-03-25 12:22:16.074
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.configurator_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.089
!MESSAGE Bundle reference:file:plugins/org.eclipse.equinox.p2.director_1.0.101.R35x_v20100112.jar was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.director 2 0 2010-03-25 12:22:16.089
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.configurator_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.089
!MESSAGE Bundle reference:file:plugins/org.eclipse.equinox.simpleconfigurator.manipulator_1.0.101.R35x_v20100209.jar was not resolved.
!SUBENTRY 2 org.eclipse.equinox.simpleconfigurator.manipulator 2 0 2010-03-25 12:22:16.089
!MESSAGE Missing imported package org.eclipse.equinox.internal.simpleconfigurator.utils_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.089
!MESSAGE Bundle reference:file:plugins/org.eclipse.equinox.p2.reconciler.dropins_1.0.100.v20090520-1905.jar was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.reconciler.dropins 2 0 2010-03-25 12:22:16.089
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.configurator_0.0.0.

!ENTRY org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.console_1.0.100.v20090520-1905 [64] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.console 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.configurator_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.console 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.director_1.0.101.R35x_v20100112 [66] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.director 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.configurator_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.director.app_1.0.101.R35x_v20091106 [67] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.director.app 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.console_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.director.app 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.directorywatcher_1.0.100.v20090525 [68] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.directorywatcher 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.update_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.exemplarysetup_1.0.100.v20090520-1905 [70] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.exemplarysetup 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.director_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.exemplarysetup 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.extensionlocation_1.0.100.v20090520-1905 [71] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.extensionlocation 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.touchpoint.eclipse_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.extensionlocation 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.update_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.extensionlocation 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.directorywatcher_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.reconciler.dropins_1.0.100.v20090520-1905 [78] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.reconciler.dropins 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing required bundle org.eclipse.equinox.p2.touchpoint.eclipse_1.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.reconciler.dropins 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.extensionlocation_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.reconciler.dropins 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.update_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.reconciler.dropins 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.configurator_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.reconciler.dropins 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.reconciler.dropins 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.directorywatcher_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.repository.tools_1.0.2.R35x_20100111 [80] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.repository.tools 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.director_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.touchpoint.eclipse_1.0.101.R35x_20090820-1821 [81] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.touchpoint.eclipse 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.touchpoint.eclipse 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.simpleconfigurator.manipulator_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.ui_1.0.101.R35x_v20090819 [83] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.ui 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing required bundle org.eclipse.equinox.simpleconfigurator.manipulator_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing required bundle org.eclipse.equinox.p2.exemplarysetup_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.rollback_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.configurator_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.ui.sdk_1.0.100.v20090520-1905 [84] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing required bundle org.eclipse.equinox.p2.ui_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.ui.query_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.actions_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.dialogs_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.model_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.operations_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.policy_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.viewers_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20090520-1905 [85] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing required bundle org.eclipse.equinox.p2.updatechecker_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing required bundle org.eclipse.equinox.p2.ui_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.p2.ui.query_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.actions_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.model_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.operations_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.ui.policy_0.0.0.
!SUBENTRY 2 org.eclipse.equinox.p2.ui.sdk.scheduler 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.updatechecker_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.p2.updatechecker_1.1.0.v20090520-1905 [86] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.p2.updatechecker 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.provisional.p2.director_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2010-03-25 12:22:16.136
!MESSAGE Bundle org.eclipse.equinox.simpleconfigurator.manipulator_1.0.101.R35x_v20100209 [93] was not resolved.
!SUBENTRY 2 org.eclipse.equinox.simpleconfigurator.manipulator 2 0 2010-03-25 12:22:16.136
!MESSAGE Missing imported package org.eclipse.equinox.internal.simpleconfigurator.utils_0.0.0.

Back to the top