Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Follow the installation instructions at https://docs.oracle.com/javase/8/docs/technotes/guides/install/windows_jdk_install.html
Set JAVA_HOME:
For Windows 8, go to Control Panel > System > Advanced System Settings.
For Windows 10, go to Control Panel > System and Security > System > Advanced System Settings.
Click the Environment Variables button.
Under System Variables, click New.
In the Variable Name field, enter JAVA_HOME
In the Variable Value field, enter the JDK installation path, e.g: C:\Program Files\Java\jdk1.8.0_77
Download MySQL Server 5.5 or above from http://dev.mysql.com/downloads/mysql/
Follow the installation instructions at http://dev.mysql.com/doc/en/windows-installation.html
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 8 go to Control Panel > System > Advanced System Settings.
For Windows 10, go to Control Panel > 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
Download and install the Git client from https://git-scm.com/download/win
Download the 3rd party libraries ZIP from https://dev.joget.org/community/download/attachments/19104566/install-libraries.zip
Unzip the file
Open a Command Prompt to execute the install_win.bat file
cd install-libraries install_win.bat
Depending on your version of Apache Maven, you might get an error "BUILD FAILED" containing the message: Cannot run program "mvn.cmd"
In this case, edit the file install-libraries\lib\setup-maven_win.xml and replace all occurrences of "mvn.cmd" with "mvn.bat"
Open a Git CMD (Git Bash) window and execute the following:
mkdir joget_src cd joget_src git clone https://github.com/jogetworkflow/jw-community.git --branch 7.0-SNAPSHOT --depth 1
Joget contains unit test cases that requires access to a running MySQL database.
Open a Command Prompt, and create a MySQL database with the SQL file in joget_src/jw-community/wflow-install/src/main/resources/data/jwdb-empty.sql
mysql -uroot -p create database jwdb; exit mysql -uroot -p jwdb < joget_src/jw-community/wflow-install/src/main/resources/data/jwdb-empty.sql
Download the sample configuration files wflow.zip and unzip it in your user home folder e.g. C:\Users\yourusername\
Edit the wflow\app_datasource-default.properties file e.g. C:\Users\yourusername\wflow\app_datasource-default.properties and ensure that the configuration (e.g. MySQL username and password) is correct
workflowDriver=com.mysql.jdbc.Driver workflowUrl=jdbc\:mysql\://localhost\:3306/jwdb?characterEncoding\=UTF-8 workflowUser=root profileName= workflowPassword=root
To pass unit tests which require a valid datasource, it is important to ensure that:
the wflow folder is located in the correct path inside your user home folder, e.g: C:\Users\yourusername\wflow
the MySQL configuration settings in wflow\app_datasource-default.properties are correct
In a Command Prompt, browse to the jw-community\wflow-app folder and execute the Maven install command
cd joget_src\jw-community\wflow-app\ mvn clean install
Sometimes building the project will fail, if one wish to skip the build test, one can follow the instructions below.
If maven-surefire-plugin is not found, copy and paste from other pom.xml or copy paste the code below under plugin section of the pom
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin>
Failed to execute goal "org.apache.maven.plugins:maven-war-plugin:2.3:war" to fix this issue follow the steps bellow: