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

Difference between pages "Callisto update people" and "Callisto Build and Update Tips and Tricks"

(Difference between pages)
(Updated with BIRT contact and improved formatting)
 
 
Line 1: Line 1:
== Callisto Build and Update Site Contacts ==
+
On this page, please add any little tidbits that help with the versioning, site management, etc., that are not part of other documents.
  
<p>These are the (not-completely-confirmed-yet) contacts from the
 
projects participating in the [[Callisto Coordinated Update Sites]].</p>
 
  
<p>Project Contacts: feel free to update this page with new or changed
+
=== Automatically versioning features appropriately ===
information.</p>
+
  
<table border="1" align="center">
+
I haven't tried it yet, but in
 +
[[https://bugs.eclipse.org/bugs/show_bug.cgi?id=125801#c9 | bug 125801]
 +
Andrew Niefer mentions that
  
+
<p><cite>
<tr valign="top">
+
When using ".qualifier", the resulting feature version can take the form of
<th>Project</th>
+
1.2.3.qualifier_suffix, where qualifier will come from the cvs tag, or date the
<th>Primary Contact</th>
+
same as for plugins.  suffix will be generated based on the qualifiers of the
<th>Alternate Contacts</th>
+
contained plugins.
</tr>
+
<br /><br />
 +
Whether or not to append the _suffix to the version is controlled by the
 +
property "generateFeatureVersionSuffix" in the builder's build.properties.  The
 +
default value is false.
 +
</cite>
 +
</p>
  
 +
I personally feel that <code>generateFeatureVersionSuffix</code> should be the default, but since it isn't, thought I'd document here.
  
<tr valign="top">
+
This is important since a feature's qualifier needs to not just change accourding to its own changes, but also needs to reflect the "most changed" plugin it contains.
<td>Business Intelligence and Reporting Tools (BIRT)</td>
+
<td>Sue Lee</td>
+
<td>Sissi Zhu<br />
+
Wenfeng Li</td>
+
</tr>
+
<tr valign="top">
+
<td>C/C++ IDE (CDT)</td>
+
<td>Doug Schaefer</td>
+
</tr>
+
<tr valign="top">
+
<td>Data Tools Platform (DTP)</td>
+
<td>John Graham</td>
+
</tr>
+
<tr valign="top">
+
<td>Eclipse Modeling Framework (EMF, SDO, XSD)</td>
+
<td>Nick Boldt</td>
+
</tr>
+
<tr valign="top">
+
<td>Eclipse Project (Platform, JDT, PDE)</td>
+
<td>Kim Moir</td>
+
</tr>
+
<tr valign="top">
+
<td>Graphical Editing Framework (GEF)</td>
+
<td>Steve Shaw</td>
+
</tr>
+
<tr valign="top">
+
<td>Graphical Modeling Framework (GMF)</td>
+
<td>Richard Gronback</td>
+
</tr>
+
<tr valign="top">
+
<td>Test and Performance Tools Platform (TPTP)</td>
+
<td>Hubert David</td>
+
</tr>
+
<tr valign="top">
+
<td>Visual Editor (VE, JEM)</td>
+
<td>Peter Walker</td>
+
</tr>
+
<tr valign="top">
+
<td>Web Tools Platform (WTP, WST, JST)</td>
+
<td>[[User:David williams|David Williams]]</td>
+
<td>Naci Dai<br />
+
Jeffrey Liu</td>
+
</tr>
+
  
</table>
+
=== Do not use underscore in version qualifiers ===
 +
 
 +
I think this will all work better post M5, but certainly on 3.1.x streams, and underscore is converted to a hyphen in some places, and will at first seeem to work, but then there's problems associating source with its code, etc., so ... use with care, if not outright avoid. See [[https://bugs.eclipse.org/bugs/show_bug.cgi?id=89428 | bug 89428]] for some dicussions.
 +
 
 +
=== Use the platform releng tool ===
 +
 
 +
To update your map files automatically while releasing your plug-ins, the releng tool found as a download way at the bottom of the platform download page is quite helpful.  The instructions are sparse, but it's fairly straightforward (right-click a project and select Team -> Release...).
 +
 
 +
When using .qualifier at the end of your Bundle-Version manifest entries, your plug-ins will be versioned according to the tags entered in your map files automatically when using the release engineering tool with the PDE basebuilder.
 +
 
 +
=== Guide to understanding versioning ===
 +
 
 +
Just because this page cannot be linked enough, look here for detailed information on when and how to apply new version numbers to your plug-ins and features: [[http://www.eclipse.org/eclipse/platform-core/documents/plugin-versioning.html Plug-in Versioning]]

Revision as of 12:37, 24 February 2006

On this page, please add any little tidbits that help with the versioning, site management, etc., that are not part of other documents.


Automatically versioning features appropriately

I haven't tried it yet, but in [| bug 125801 Andrew Niefer mentions that

When using ".qualifier", the resulting feature version can take the form of 1.2.3.qualifier_suffix, where qualifier will come from the cvs tag, or date the same as for plugins. suffix will be generated based on the qualifiers of the contained plugins.

Whether or not to append the _suffix to the version is controlled by the property "generateFeatureVersionSuffix" in the builder's build.properties. The default value is false.

I personally feel that generateFeatureVersionSuffix should be the default, but since it isn't, thought I'd document here.

This is important since a feature's qualifier needs to not just change accourding to its own changes, but also needs to reflect the "most changed" plugin it contains.

Do not use underscore in version qualifiers

I think this will all work better post M5, but certainly on 3.1.x streams, and underscore is converted to a hyphen in some places, and will at first seeem to work, but then there's problems associating source with its code, etc., so ... use with care, if not outright avoid. See [| bug 89428] for some dicussions.

Use the platform releng tool

To update your map files automatically while releasing your plug-ins, the releng tool found as a download way at the bottom of the platform download page is quite helpful. The instructions are sparse, but it's fairly straightforward (right-click a project and select Team -> Release...).

When using .qualifier at the end of your Bundle-Version manifest entries, your plug-ins will be versioned according to the tags entered in your map files automatically when using the release engineering tool with the PDE basebuilder.

Guide to understanding versioning

Just because this page cannot be linked enough, look here for detailed information on when and how to apply new version numbers to your plug-ins and features: [Plug-in Versioning]

Back to the top