Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Org.eclipse.ecf.sdk.cquery

Revision as of 18:27, 20 January 2010 by Tkubaska.ieee.org (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Return to Building ECF Release 3.2

org.eclipse.sdk,cquery has seven advisor nodes. The first five specify that components matching the pattern do not use a target platform (exactly what does this mean?) and do not use a workspace (for what? ... resolution?). The last advisor node (.*) rejects any component not matched by a previous advisor node.

The advisor node ^org\.eclipse\.equinox\.p2\.user\.ui$ has Skip Component = true. Docs day that setting Skip Component = true means that the component is not resolved. Why is this what we want here? What exactly does it mean?

The advisor node ^org\.eclipse\.equinox\.p2\.user\.ui$ has Skip Component = true. Docs say that setting Skip Component = true means that the component is not resolved. Why is this what we want here? What exactly does it mean? This node also does not specify useWorkspace=false. Note that in the Component Query Editor the selection for workspace in Resolution Scope is selected and disabled (shaded, cannot be changed) if Skip Component is true. However, you can edit the xml version of the file and set Workspace=true. If you do this, the checkbox in Resolution Scope is checked, but still disabled.

List of advisor nodes

^ch\.ethz\.iks(\..+)?
Matches ch.ethz.iks.anything.
^org\.eclipse\.ecf(\..+)?
Matches org.eclipse.ecf.anything
^org\.eclipse\.team\.ecf(\..+)?
Matches org.eclipse.team.ecf.anything
^org\.jivesoftware\.smack$
Matches org.jvesoftware.smack exactly.
^org\.json$
Matches org.json exactly.
^org\.eclipse\.equinox\.p2\.user\.ui$
Matches org.eclipse.equinox.p2.user.ui exactly.
.*
Anything not matched by a previous advisor node is rejected.


Here's the latest version of the org.eclipse.ecf.sdk.cquery file. Check the repository for the actual version used in the build. The version provided here is for convenience only, although we make a reasonable attempt to keep it current. The cquery files (once we determine exactly what we want) should not change frequently.

Back to the top