Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update guide to latest changes.

...

  • Install the Java Development Kit (JDK)

  • Install MySQL.

  • Install Apache Maven

    • Download Apache Maven 2.2.1 or above from https://maven.apache.org/download.cgi

    • Follow the installation instructions at https://maven.apache.org/install.html

    • Please ensure that the "mvn" command can be executed from the command line by adding it to the PATH:

      • In Windows 7 right click My Computer and select Properties > Advanced.8 go to Control Panel > System > Advanced System Settings.
      • For Windows 10, In Windows 8 go to Control Panel  > System > > System and Security > System > Advanced System Settings.
      • Click the Environment Variables button.
      • Under System Variables, select the variable Path and click Edit.
      • In the Variable Value field, append the Maven path (e.g. C:\Program Files\apache-maven-3.3.9\bin) to the current path


  • Install Git

    Client

...

Code Block
mkdir joget_src
cd joget_src
git clone https://github.com/jogetworkflow/jw-community.git --branch 67.0-SNAPSHOT --depth 1

4. Configure Datasource for Test Case

...

Warning

To pass unit tests which require a valid datasource, it is important to ensure that:

  1. the wflow folder is located in the correct path inside your user home folder, e.g. : C:\Users\yourusername\wflow
  2. the MySQL configuration settings in wflow\app_datasource-default.properties are properties are correct

5. Build Project

  • In a Command Prompt, browse to the jw-community\wflow-app folder and execute the Maven install command

Code Block
cd joget_src\jw-community\wflow-app\
mvn clean install

 

...