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 revisions of "ATF/BuildingJSDT"

< ATF
Line 15: Line 15:
  
 
*There is one outstanding issue is that the plugins.xml in org.eclipse.wst.jsdt.web.ui  has one element that doesn't  exist in WTP 2.0. The manifest compiler will be set to ignore the error on the build. As I remember this was used in the pervious release because of a number of undefined extension points in earlier versions of JSDT.  
 
*There is one outstanding issue is that the plugins.xml in org.eclipse.wst.jsdt.web.ui  has one element that doesn't  exist in WTP 2.0. The manifest compiler will be set to ignore the error on the build. As I remember this was used in the pervious release because of a number of undefined extension points in earlier versions of JSDT.  
 +
 +
'''Map file tags and plugins that are not used.'''
 +
 +
*The code in ATF for JSDT has been updated to build against the M5 version of JSDT. The following tags should be in the map file (copied from the JSDT map file)
 +
**plugin@org.eclipse.wst.jsdt.doc=v200802062329
 +
**plugin@org.eclipse.wst.jsdt.core=v200802132239
 +
**plugin@org.eclipse.wst.jsdt.manipulation=v200712072133
 +
**plugin@org.eclipse.wst.jsdt.support.firefox=v200802062329
 +
**plugin@org.eclipse.wst.jsdt.support.ie=v200802062329
 +
**plugin@org.eclipse.wst.jsdt.ui=v200802132239
 +
**plugin@org.eclipse.wst.jsdt.web.core=v200802062329
 +
**plugin@org.eclipse.wst.jsdt.web.support.jsp=v200712171755
 +
**plugin@org.eclipse.wst.jsdt.web.ui=v200802062329
 +
**feature@org.eclipse.wst.jsdt.feature=v200712072133
 +
*There is two plugins and two features used by ATF which are not in the JSDT mapfile and have been taged with the following tags.
 +
**feature@org.eclipse.wst.jsdt.jsp.feature=v200802132239
 +
**feature@org.eclipse.wst.jsdt.web.feature=v200802132239
 +
**plugin@org.eclipse.wst.jsdt.atfdebug=v200802132239
 +
**plugin@org.eclipse.wst.jsdt.web.support.jsp=v200802132239
 +
 +
  
 
------------------
 
------------------

Revision as of 16:46, 20 February 2008

JSDT is moving into WTP 3.0. The latest versions of JSDT is not longer compatible with WTP 2.0. The following JSDT plugins are no longer compatible with WTP 2.0

  • org.eclipse.wst.jsdt.web.support.jsp
  • org.eclipse.wst.jsdt.web.ui

The following changes will be made

org.eclipse.wst.jsdt.web.support.jsp

  • The plugin org.eclipse.wst.jsdt.web.support.jsp is no longer used in WTP 3.0. the plugins will be reverted back to run against WTP 2.0.

org.eclipse.wst.jsdt.web.ui

  • The changes in org.eclipse.wst.jsdt.web.ui that were removed/changed will be moved into org.eclipse.atf.compatibility.jsdt. The original plan was to use a previous version of for the plugin.xml file. This is no longer possible because of class renaming done in JSDT.
  • There is one outstanding issue is that the plugins.xml in org.eclipse.wst.jsdt.web.ui has one element that doesn't exist in WTP 2.0. The manifest compiler will be set to ignore the error on the build. As I remember this was used in the pervious release because of a number of undefined extension points in earlier versions of JSDT.

Map file tags and plugins that are not used.

  • The code in ATF for JSDT has been updated to build against the M5 version of JSDT. The following tags should be in the map file (copied from the JSDT map file)
    • plugin@org.eclipse.wst.jsdt.doc=v200802062329
    • plugin@org.eclipse.wst.jsdt.core=v200802132239
    • plugin@org.eclipse.wst.jsdt.manipulation=v200712072133
    • plugin@org.eclipse.wst.jsdt.support.firefox=v200802062329
    • plugin@org.eclipse.wst.jsdt.support.ie=v200802062329
    • plugin@org.eclipse.wst.jsdt.ui=v200802132239
    • plugin@org.eclipse.wst.jsdt.web.core=v200802062329
    • plugin@org.eclipse.wst.jsdt.web.support.jsp=v200712171755
    • plugin@org.eclipse.wst.jsdt.web.ui=v200802062329
    • feature@org.eclipse.wst.jsdt.feature=v200712072133
  • There is two plugins and two features used by ATF which are not in the JSDT mapfile and have been taged with the following tags.
    • feature@org.eclipse.wst.jsdt.jsp.feature=v200802132239
    • feature@org.eclipse.wst.jsdt.web.feature=v200802132239
    • plugin@org.eclipse.wst.jsdt.atfdebug=v200802132239
    • plugin@org.eclipse.wst.jsdt.web.support.jsp=v200802132239



Because of changes in JSDT, the original proposal below will not obsolete

JSDT is moving into WTP 3.0. The latest versions of JSDT is not longer compatible with WTP 2.0. The following JSDT plugins are no longer compatible with WTP 2.0

  • org.eclipse.wst.jsdt.web.support.jsp
  • org.eclipse.wst.jsdt.web.ui

The area that is not compatible is the plugin.xml files for the two plugins. A version of the plugin.xml that work with WTP have been tag with the id v200711071635. The following process will be followed to create a build.

  • The version for JSDT will be checkout of the head.
    • The plugin.xml for the org.eclipse.wst.jsdt.web.support.jsp and org.eclipse.wst.jsdt.web.ui will be switch to the tag **version v200711071635.
    • The checkout version of JSDT will now be tag with the build id.
    • There are no plans to automate this process, since the problem goes away when ATF moves to WTP 3.0.

Back to the top