Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Download the Java Development Kit (JDK) 7 or above from http://www.oracle.com/technetwork/java/javase/downloads/index.html.
Follow the installation instructions at https://docs.oracle.com/javase/8/docs/technotes/guides/install/windows_jdk_install.html
Set JAVA_HOME:
In Windows 7 right click My Computer and select Properties > Advanced.
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.
Follow the installation instructions at https://maven.apache.org/install.html
Please ensure that the "mvn" command
can be executed from the command line.
Code Block |
---|
sudo apt-get install maven
mvn -version |
Install Github Client.
Download and install the Git client from https://git-scm.com/download/win
...
Download the 3rd party libraries ZIP from http://dev.joget.org/community/download/attachments/19104566/install-libraries.zip
Unzip the file
Code Block |
---|
unzip -a install-libraries.zip cd install-libraries install_win.bat |
Warning |
---|
Depending on your version of Windows and/or Apache Maven, you might get an error BUILD FAILED with the message Cannot run program "mvn.bat" In this case, edit the file install _linux.sh cd ~-libraries\lib\setup-maven_win.xml and replace all occurrences of "mvn.bat" with "mvn.cmd" |
Code Block |
---|
mkdir joget_src
cd joget_src
git clone https://github.com/jogetworkflow/jw-community.git --branch 5.0-SNAPSHOT
cd ~ |
...
Code Block |
---|
mysql -uroot -p create database jwdb; exit mysql -uroot -p jwdb < joget_src/jw-community/wflow-install/src/main/resources/data/jwdb-empty.sql |
...
...
...
...
...
...
Code Block |
---|
workflowDriver=com.mysql.jdbc.Driver
workflowUrl=jdbc\:mysql\://localhost\:3306/jwdb?characterEncoding\=UTF-8
workflowUser=root
profileName=
workflowPassword=root |
Warning |
---|
To pass unit tests which require a valid datasource, It is important to ensure that:
|
Code Block |
---|
cd ~/joget_src/\jw-community/\wflow-app/\ mvn clean install |