wtp committer faqfrequently asked questions and answers | ![]() |
About the FAQ
For problems with this FAQ please open a bug report .
Table of Contents
- General
- Who do we contact in order to get commiter passwords reset?
- How do I change my dev.eclipse.org password?
- How can I set up a workspace for WTP development/extension?
- What is the correct usage of severity when opening a WTP bug?
- How do I help users assign WTP bugs to the correct component?
- Build/CVS
- What is the CVS info for the webtools project?
- How do I add my plugin to the WTP CVS repository?
- Where can I find more information about CVS?
- Is there a tool for releasing changes?
- How do I release my changes?
- What do I need to do before releasing changes?
- How do I add a new plugin to WTP?
- How do I jar my plug-in?
- How do I delete folders from the CVS repository?
- Source Code
- What copyrights should we use?
- Is there a tool to update the copyright?
- What are the package naming conventions?
- What comment should I use when declaring public provisional API?
- What is the proper use of Javadoc @since tags?
- Website
- Who maintains the WTP website?
- How do I update the WTP website?
- What is the CVS info for the webtools website?
- Why do I see a javax.net.ssl.SSLHandshakeException when building the website?
Generaltop
- Who do we contact in order to get commiter passwords reset?
You need to contact the Eclipse webmaster at webmaster@eclipse.org. - How do I change my dev.eclipse.org password?
You can change your password using the committer tools available at https://dev.eclipse.org/committers/. - How can I set up a workspace for WTP development/extension?
There are three ways you can set up a workspace to either develop WTP or develop on the WTP base:
-
Install WTP and extract only the plug-ins you are interested in.
This method is useful if you are only working with a subset of
WTP functionality or extending WTP.
- Download and install the WTP driver you want to work with from the WTP downloads page.
- Create a new workspace using your installed version of WTP.
- Extract any plug-ins you need to modify from the WTP CVS repository.
-
Extract the latest version of all the WTP plug-ins using the WTP project set. (This will extract
all of the WTP plug-ins from HEAD.) This method is useful if you want the
most up-to-date version of the WTP plug-ins.
- Download the WTP team project set file from http://www.eclipse.org/webtools/development/team_project_set/wtp.psf.
-
In you Eclipse workbench select File->Import->Team Project Set. Select the WTP
team project set file you downloaded and click Finish.
*note: It may take a while for all the WTP plug-ins to be extracted to your workspace.
-
Extract the WTP plug-in versions from a specific build. This method is useful
if you want to extend or test a specific version of WTP.
*note: this method requires that you have the releng plug-in installed. For information about this plug-in see the FAQ entry Is there a tool for releasing changes?.- Launch Eclipse and create a simple project in your workspace.
-
On the WTP downloads page
select the WTP build for which you want to extract all the plug-ins. On the
top of the page for the specific download select map files and save the
file as wtp.map in your simple project.
*note: you may need to refresh your workspace for the file to be visible in it. -
Right click on wtp.map and select Team > Load Map projects. The plug-in versions from the
build will be extracted to your workspace.
*note: It may take a while for all the WTP plug-ins to be extracted to your workspace.
-
Install WTP and extract only the plug-ins you are interested in.
This method is useful if you are only working with a subset of
WTP functionality or extending WTP.
- What is the correct usage of severity when opening a WTP bug?
Although this is somewhat of a judgement call, you should use the standard definitions found here.
Component owners should double check open Blocker/Critical/Major bugs to make sure they are accurately described.
Although a user may feel strongly about their favourite bug, we should still classify it correctly. We do have some leeway in assigning it a priority, i.e. if we feel that a bug should be fixed, we can up its priority. P1 should be reserved for release-defining functions, .i.e we stop ship if P1's are not fixed.
-
How do I help users assign WTP bugs to the correct component?
When users assign a WTP bug to the wrong component, you should assign it to the correct component and paste in the following message as a comment:Thank you for reporting this bug. I have assigned to the correct component. For guidance on how to select the correct component in future bug reports, please refer to: https://bugs.eclipse.org/bugs/describecomponents.cgi?product=Web+Tools
Build/CVStop
- What is the CVS info for the webtools project?
server : dev.eclipse.org
path : /cvsroot/webtools - How do I add my plugin to the WTP CVS repository?
- On your plugin project select Team->Share Project... context menu.
- Choose existing repository location (or create a new one if you haven't) for dev.eclipse.org:/home/webtools
- On the next page, if you know exactly where the plugin should be located in the
repository, then select the "Use specified module name" radio button and
type in the full path. However, to be safe, it's recommended browsing the repository
to obtain the correct path, and then adding the module name. Here is an example:
Select the "Use an existing module".
Browse and then select the folder where you want your new plugin to reside.

Notice that the text field is filled in with the path. Reselect the "Use specified module name:" radio button, and append your plugin's name.
- Where can I find more information about CVS?
The WTP CVS respository page contains links to useful CVS documentation including how to use Eclipse with CVS. - Is there a tool for releasing changes?
Yes. The releng tool plugin is available from the Eclipse download page. Each version of Eclipse contains its own releng tool plugin. Select the version of Eclipse you're using. The releng tool plugin is found at the bottom of the page. - How do I release my changes?
- Commit your changes to the CVS repository. (For information about CVS and committing see the FAQ entry Where can I find more information about CVS?)
- Extract the releng project from the CVS repository. This project contains the map files.
-
*note: It is strongly recommended that you use the releng tool to release
your changes.
You now have to tag your source files and update the corresponding map entries. Although you can do this manually it is much easier and less error prone to use the releng tool. (See FAQ entry Is there a tool for releasing changes?)
-
Select the plug-in you want to release, right click on it and select Team->Release as shown below.
- Select the releng project as the map project. Click Next.
- If not already selected, select the plug-ins you want to release. Click Next.
- The page displays the changes between the last released version of the plug-in and what is in HEAD. Review the changes. If everything is correct, click Next.
- Enter the tag you want to use to release the changes. WTP uses tags of the form vYYYYMMDD_HHMM. Click Next.
- The page displays the changes to the map files. Review the changes. If everything is correct, click Next.
- Enter a comment for the release operation and click Finish.
-
Select the plug-in you want to release, right click on it and select Team->Release as shown below.
- What do I need to do before releasing changes?
It depends. If you're releasing an isolated fix, you're probably safe to run the JUnit tests for the plugin and, if all pass, release your fix. If you're making a breaking provisional API change (remember, you cannot make breaking API changes) you should announce the change to the WTP dev list advising what has changed, why, and how existing consumers of the provisional API can adapt their plugins to the change.
It is also good practice to use a current WTP development driver when making changes so as not to cause a break in your plugin due to changes in other plugins.
- How do I add a new plugin to WTP?
Follow this proceduce closely. Mistakes will likely cause a build breakage.
There are three tasks to add a new plugin to WTP:- Commit your new plug-in to the CVS repository. See How do I add my plugin to the WTP CVS repository?
-
Add your plugin to the appropriate feature. Features are located under the subproject's assembly component. For example, for WST you can find features at wst/components/assembly/features.
A feature entry will look like the following:
<plugin
id="org.eclipse.wst.common.uriresolver"
download-size="0"
install-size="0"
version="0.0.0"/>
After you've added your plugin to the feature, commit the changes and release the feature.
-
Add your plugin to the appropriate map file. Map files are located in the
releng component. A map file entry will look like the following:
plugin@org.eclipse.wst=v20050718_2336,:pserver:anonymous@dev.eclipse.org:/home/webtools,,wst/components/assembly/plugins/org.eclipse.wst
After updating the map file commit it to the repository. -
Your plugin is now in the repository, included in a feature, and included in a map. Now release your plugin.
- How do I jar my plug-in?
First of all, jarring is not an option for every plug-in. If your plugin contains multiple jars you can't jar your plug-in.
There are a three steps to jarring your plugin:
-
Update your plug-in's build.properties file to include the source.. and
output.. keys as well as "." for bin.includes and src.includes as follows:
source.. = src/
output.. = bin/
bin.includes = plugin.xml,\
META-INF/,\
.,\
plugin.properties,\
about.html
src.includes = exsd/,\
.,\
build.properties
- Update your plug-in's manifest (MANIFEST.MF) by removing the line beginning with "Bundle-ClassPath".
-
Update the feature entry for your plugin to include the unpack=false attribute.
<plugin
id="org.eclipse.wst.common.uriresolver"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
-
Update your plug-in's build.properties file to include the source.. and
output.. keys as well as "." for bin.includes and src.includes as follows:
- How do I delete folders from the CVS repository?
First of all, folders should not normally be deleted from the CVS repository. The repository is meant to contain the history of WTP development. That said, you may have reason to delete a folder such as you committed a folder with the incorrect name, or committed to the wrong location. In these cases:
- Delete the content from the folder. The content will show up in the Web view under the attic folder.
- Commit an obsolete.txt file in the folder. The file should contain the reasons why the folder is obsolete.
- Request that the Eclipse webmaster delete the folder. Requests can be made by sending the webmaster an e-mail to webmaster@eclipse.org.
Source Codetop
- What copyrights should we use?
The copyright statement takes one of these two forms, differing only in the year stated on the first line of text.
IBM copyrights below are examples only and won't apply to everyone in the community.- If the file's year of invention and last year of modification are the same.
Example:
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/ - If the file's year of invention and last year of modification are
different...
Example:
/*******************************************************************************
* Copyright (c) 2001,2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
- If the file's year of invention and last year of modification are the same.
- Is there a tool to update the copyright?
org.eclipse.releng.tools plugin from Eclipse download site allows you to fix copyrights. - What are the package naming conventions?
See the WTP project naming conventions - What comment should I use when declaring public provisional API?
The following comment should be placed in each provisional API class description:
* <p>
* <b>Note:</b> This class/interface is part of an interim API that is still under development and expected to
* change significantly before reaching stability. It is being made available at this early stage to solicit feedback
* from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
* (repeatedly) as the API evolves.
* </p>See the WST Server core plugin for an example.
- What is the proper use of Javadoc @since tags?
When you add a package or class to the API, include a single package or class level @since tag, e.g. @since 1.0.
When you add a method to an existing API class, add a method level @since tag.
These rules minimize the number of @since tags you need to include. The reference for the use of Javadoc in general is available here.
Websitetop
- Who maintains the WTP website?
The WTP website is maintained by the WTP committers.
Problems and requests should be submitted by opening a bug report. - How do I update the WTP website?
There are two ways:
- Extract the whole website (www/webtools), make your changes, and run the website build script (build.xml) in the webtools folder. This will build the whole site and is useful if you need to make changes in more than one module (see below). The downside is the website is big and can take a while to extract.
- The website is broken up into self contained modules such as community, faq, people, and plans. Extract the module you want to make changes to (such as www/webtools/plans), make your changes, run the build script (build.xml) included in the module, and commit your changes.
- What is the CVS info for the webtools website?
The WTP website is located in the cvs root for the Eclipse website in the www/webtools folder.
server : dev.eclipse.org
path : /cvsroot/org.eclipse - Why do I see a javax.net.ssl.SSLHandshakeException when building the website?
The WTP website requires access to Eclipse's bugzilla system in order to build the plans section. If you see the following error:
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found
when building the site and using a Sun JRE you should update your JRE to at least Sun JRE 1.4.2_09.


