Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

  1. Set a workflow variable to a constant value.  Use AssignVariablePlugin as a tool.  Use the parameters workflow variable name : A,  expression : 0.
  2. To increment a workflow variable value, use AssignVariablePlugin as a tool.  Use the parameters workflow variable name : A, expression : Integer.parseInt(A) + 1.
  3. To decrement a workflow variable value : use AssignVariablePlugin as a tool. Use the parameters workflow variable name : A, expression : Integer.parseInt(A) - 1.

...

Create an empty project folder. Inside this folder, create a subdirectory src\main\java\myplugin.

...

Login to Joget Workflow as admin, choose System Settings>Manage Plugins>Upload Plugin, then browse to the target directory of the project folder. Upload the project snapshot jar that is was generated by the previous maven execution.