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 "JWT CVS"

(releng (for "release engineering"))
(transformations)
Line 93: Line 93:
 
* '''jwt-transformation-xpdl'''    ''JWT to XPDL transformation''
 
* '''jwt-transformation-xpdl'''    ''JWT to XPDL transformation''
 
* '''jwt-transformation-xpdl-test'''    ''Tests for JWT to XPDL transformation''
 
* '''jwt-transformation-xpdl-test'''    ''Tests for JWT to XPDL transformation''
* '''jwt-transformation-jwt2bpmn'''    ''jwt to bpmn transformation''
+
* '''jwt-transformation-jpdl'''    ''JWT to jPDL transformation (incubation)''
* '''jwt-transformation-jwt2bpmn-tests'''    ''Tests for the jwt to bpmn transformation''
+
* '''jwt-transformation-jpdl-test'''    ''Tests for JWT to jPDL transformation (incubation)''
 +
* '''jwt-transformation-bpmn'''    ''jwt to bpmn transformation''
 +
* '''jwt-transformation-bpmn-tests'''    ''Tests for the jwt to bpmn transformation''
 +
* '''jwt-transformation-properties'''  ''Extraction of JWT properties into a .properties file''
  
  

Revision as of 13:39, 9 March 2009

This site contains information about the dependencies of JWT's components, as well as a description on how to download the latest versions from the Eclipse CVS and the layout of the JWT CVS repositories.

Access the JWT Source Code

The planned and current state of the next release of JWT components can be viewed at Upcoming Release Information.

To download the source code of the various components of JWT, please connect your CVS client (typically Eclipse 3.4's CVS Browsing perspective) with:

  • Host: dev.eclipse.org
  • Repository path: /cvsroot/technology
  • User: anonymous
  • Password: (none)
  • Connection type: pserver

If you have a committer account, please provide your committer data (username and password) and select as connection type extssh instead of pserver.

In this CVS repository, the source code of JWT is under the "org.eclipse.jwt" directory, which you can retrieve by doing a CVS checkout. It is laid out as follow :

  • org.eclipse.jwt/we : Workflow Editor, i.e. design time tools
  • org.eclipse.jwt/wam : Workflow Audit And Monitoring, i.e. runtime time tools and framework
  • org.eclipse.jwt/desktop : Simulator and other standalone BPM tools

For a more detailed layout please refer to Detailed Layout of the CVS.

You can also browse the CVS repository online at http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jwt/?root=Technology_Project .

Requirements

Dependencies

Environment

The easiest way to get an Eclipse environment with all dependencies is to install Eclipse Ganymede JEE Edition and a Java Runtime Environment (JRE) / Java Development Kit (JDK) 5.0 or higher.

EMF / GEF

Version 0.5.0 of the JWT Workflow Editor (JWT-WE) requires Eclipse (3.4) with the Eclipse Modeling Framework (EMF) and the Graphical Edition Framework (GEF).

If you already have Eclipse installed you can download EMF and GEF from from your "Software updates" menu.

JDOM

JWT uses Jdom 1.0 from Orbit. To work with it in your workspace, follow the steps described here.

In our case, simply check out in your wrkspace the module described above:

  • host: dev.eclipse.org
  • repository: /cvsroot/tools
  • module: org.eclipse.orbit/org.jdom
  • Tag: v200806100616 (Version)

Get the Code

You need to retrieve the JWT source code by checking it out from CVS, as described above.

If you used an external CVS tool to check out the code, you need to import the source code into Eclipse as projects (in the Java Perspective, using right click > import existing projects).

Run the Plugins from Code

Right click on the jwt-we project and choose Run as > Eclipse application. This will launch JWT-WE with all plugins that are available in the workspace. If Eclipse does not succeed to start or JWT-WE is not active, please ensure that all necessary plug-ins are configured to start with your projects. To do so, click on the arrow in the Run item in toolbar, and choose Run Configuration.... Select/Create a run configuration (Eclipse Application) for JWT-WE and on the Plug-ins tab select all necessary plug-ins (in case you have doubt, select Add Required Plugins). Workflow Editor plugins (e.g. the Documentation Generator plugin) must also be enabled in order to be available at run time. You can now use the Run item in the toolbar to start your new configuration.

Structure of CVS

  • All projects start with jwt.
  • Afterwards the main component is added jwt-we, jwt-transformation or jwt-wam.
  • If an example is visible in a specific area it is named jwt-we-XY-example (for an example using an extension point of the workflow editor).
  • The package structure is org.eclipse.jwt.component and for additional plugins org.eclipse.jwt.component.plugins.nameexample, e.g. org.eclipse.jwt.we.plugins.viewexample.
  • Versioning: It is always x.y.z where x and y are always consistent with the corresponding JWT version and z is reserved for the different versions of the plugin in one release, e.g. 0.4.1 for JWT release 0.4 and first change of this additional plugin.
  • In CVS there will be a main directory for each component jwt-we, jwt-transformation, jwt-wam and in these there is a subdirectory jwt-XY-plugins (e.g. we/jwt-we-plugins/) where all additional plugins can be found.


Detailed Layout of the CVS

we

Contains everything related to the Workflow Editor

  • jwt-we The Workflow Editor
  • jwt-we-plugins Plugins for the Workflow Editor
    • jwt-we-action-example An Example on how to add Menu/Toolbar Actions to the Workflow Editor
    • jwt-we-action-doc An Action for generating Documentations
    • jwt-we-view-example A Example on how to add Views to the Workflow Editor
    • jwt-we-view-uml A view that displays Processes as UML Activity Diagrams
    • jwt-we-helpers-application propertyDescriptors and changeListener to facilitate the modeling of an application
    • jwt-we-helpers-files propertyDescriptors and tools to replace TextArea by filesystem browser for files (icon, jarArchive)
  • jwt-view A Program for Creating and Modifying Workflow Editor Views
  • jwt-we-feature JWT-WE Feature (to be published on Update Site)
  • jwt-we-update-site Contents for Update-Site

transformations

  • jwt-transformation-base The base plug-in for any transformation. Provides UI
  • jwt-transformation-stub A sample plug-in that is based on jwt-transformation-base
  • jwt-transformation-xpdl JWT to XPDL transformation
  • jwt-transformation-xpdl-test Tests for JWT to XPDL transformation
  • jwt-transformation-jpdl JWT to jPDL transformation (incubation)
  • jwt-transformation-jpdl-test Tests for JWT to jPDL transformation (incubation)
  • jwt-transformation-bpmn jwt to bpmn transformation
  • jwt-transformation-bpmn-tests Tests for the jwt to bpmn transformation
  • jwt-transformation-properties Extraction of JWT properties into a .properties file



wam

  • jwt-webservices Tools to introspect WSDL
  • jwt-runtime-api A workflow API that is used by monitoring plug-in at runtime to get informations from a workflow engine
  • jwt-monitoring A plug-in that provides tools to display a workflow state from a workflow engine into JWT
  • jwt-monitoring-tests

releng (for "release engineering")

JWT releases automated builds. See JWT Automatic Build for usage.

  • builder The builder utility: contains ant files and scripts to build and publish JWT
  • tester The tester utility: works only and is necessary for builder. Contains a set of files for automated testing
  • cbi-builder An experimental builder, based on the Common Build Infrastructure
  • jwt-feature The JWT feature to release => contains the list of plugins to include into the release
  • jwt-feature-branding The branding plugin for JWT feature
  • jwt-tests-feature The JWT test feature. It is not intended to be shipped or distributed, since it is only used for automated testing. It contains the list of all tests plugins that we want to test at build time
  • jwt-tests-plugin The master test plugin. It contains a plugin.xml wheich ocntains the list of all test plugins we want to run, and also a AllTest class that is the automated testing entry point test suite. Any test suite that wishes to be run at build time must be added to this TestSuite

See also

Copyright © Eclipse Foundation, Inc. All Rights Reserved.