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 "BPMN2-Modeler"

(User Resources)
(User Resources)
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
Welcome to the BPMN2 Modeler Wiki page.
 
 
The BPMN2 Modeler is a graphical modeling tool that generates BPMN 2.0 compliant files.
 
 
 
== General  ==
 
== General  ==
  
[http://eclipse.org/bpmn2-modeler Project Home Page]  
+
Welcome to the [http://eclipse.org/bpmn2-modeler Project BPMN2 Modeler] Wiki page.  
 
+
Screencasts
+
 
+
*[http://eclipse.org/bpmn2-modeler/videos/BPMN2Modeler-Setup.htm Setup]
+
*[http://eclipse.org/bpmn2-modeler/videos/BPMN2Modeler-SimpleProcess.htm Simple Process]
+
  
 +
BPMN2 Modeler is a graphical modeling tool that generates [http://www.omg.org/spec/BPMN/2.0/ BPMN 2.0] spec-compliant files.
 
This page contains useful information for developers who wish to build, and possibly contribute to, the BPMN2 Modeler editor.  
 
This page contains useful information for developers who wish to build, and possibly contribute to, the BPMN2 Modeler editor.  
 
== Build Jobs ==
 
 
BPMn2 Modeler uses a shared Hudson instance for building the product. There are two build jobs on [https://hudson.eclipse.org/hudson/ this Hudson instance]:
 
 
* [https://hudson.eclipse.org/hudson/bpmn2-modeler.kepler bpmn2-modeler.kepler] for Kepler builds (currently configured for version 1.0.2)
 
* [https://hudson.eclipse.org/hudson/bpmn2-modeler.luna bpmn2-modeler.luna] for Luna builds (currently configured for version 1.1.0)
 
 
Both of these jobs are triggered by a commit to the [https://git.eclipse.org/c/bpmn2-modeler/org.eclipse.bpmn2-modeler.git/ BPMN2 Modeler Git repository].
 
  
 
== User Resources ==
 
== User Resources ==
  
[http://eclipse.org/bpmn2-modeler/downloads.php Downloads]
+
* [http://download.eclipse.org/bpmn2-modeler/updates/ Update Site] - Download and install BPMN2 Modeler.
 
+
* [https://wiki.eclipse.org/BPMN2-Modeler/Tutorials Tutorials] - View tutorials, screencasts and blog articles.
= Developer Resources =
+
* [https://www.eclipse.org/forums/index.php/f/226/ User Forum] - Have a question? Please don't hesitate to ask!
 
+
* [https://projects.eclipse.org/projects/soa.bpmn2-modeler/documentation/ Project Plan] - See what's in the works for upcoming releases.
[https://git.eclipse.org/c/bpmn2-modeler/org.eclipse.bpmn2-modeler.git Git repository]
+
* [https://wiki.eclipse.org/BPMN2-Modeler/KnownIssues Known Issues] - Think you may have found a bug? Check here first for workarounds.
 
+
To clone this repository to your local machine, you must first install the GIT command-line tools, or GUI tools.
+
Then issue the command:
+
 
+
git clone https://git.eclipse.org/c/bpmn2-modeler/org.eclipse.bpmn2-modeler.git
+
 
+
This will create a directory named org.eclipse.bpmn2-modeler in your current directory.
+
  
To build the entire product requires Maven 3.0. In your local GIT repository directory for BPMN2 Modeler, enter the command:
+
== Developer Resources ==
  
mvn clean install -Dcbi.jarsigner.skip=true -P platform-luna
+
* [https://wiki.eclipse.org/index.php?title=BPMN2-Modeler/Build Builds] - Get access to source code and instructions on how to build BPMN2 Modeler.
 +
* [https://git.eclipse.org/c/bpmn2-modeler/org.eclipse.bpmn2-modeler.git Source Code] - Browse the Git repository.
 +
* [https://wiki.eclipse.org/BPMN2-Modeler/ExtensionPoints Extension Point API] - Learn how to extend BPMN2 Modeler for a specific Target Runtime.

Revision as of 14:47, 1 July 2014

General

Welcome to the Project BPMN2 Modeler Wiki page.

BPMN2 Modeler is a graphical modeling tool that generates BPMN 2.0 spec-compliant files. This page contains useful information for developers who wish to build, and possibly contribute to, the BPMN2 Modeler editor.

User Resources

  • Update Site - Download and install BPMN2 Modeler.
  • Tutorials - View tutorials, screencasts and blog articles.
  • User Forum - Have a question? Please don't hesitate to ask!
  • Project Plan - See what's in the works for upcoming releases.
  • Known Issues - Think you may have found a bug? Check here first for workarounds.

Developer Resources

  • Builds - Get access to source code and instructions on how to build BPMN2 Modeler.
  • Source Code - Browse the Git repository.
  • Extension Point API - Learn how to extend BPMN2 Modeler for a specific Target Runtime.

Back to the top