SlideShare a Scribd company logo
All Rights Reserved © Joget Inc
Joget Workflow v6
Preparing Development Environment
http://facebook.com/jogetworkflow
http://twitter.com/jogetworkflow
Last Revised on Oct 2018
All Rights Reserved © Joget Inc
Prerequisites
1. Basic application development management know-
hows. (i.e. svn/versioning, Maven project etc)
All Rights Reserved © Joget Inc
Content
1. Introduction
2. Prepare development tools
3. Checking out source code
4. Prepare dependency libraries
5. Building from source
All Rights Reserved © Joget Inc
Chapter 1
Introduction
All Rights Reserved © Joget Inc
Introduction
• In this module, we will be learning about the followings:
– Prepare development tools
– Checking out source code
– Prepare dependency libraries
– Building from source
• Alternatively, you may also refer to
https://dev.joget.org/community/display/KBv6/Joget+Workflow+Open+Source
or YouTube https://www.youtube.com/watch?v=5k-mqaaT5RQ
All Rights Reserved © Joget Inc
Chapter 2
Prepare development tools
All Rights Reserved © Joget Inc
Tools
• Download the following tools or get it in your Developer
Training Materials and install.
– NetBeans - http://netbeans.org/
– Apache Maven 2.2.1 or above - http://maven.apache.org/
– SVN client (optional)
http://www.collab.net/downloads/subversion
– JDK 6 or above http://www.java.com
– MySQL 5 or above http://mysql.com
All Rights Reserved © Joget Inc
Setting Up JDK and Apache Maven 2
• For Windows
1. Open Window System Properties dialog.
2. Selecting the "Advanced" tab, and the "Environment
Variables" button.
3. Add new System Variable named “JAVA_HOME”, and set its
value to JDK installation directory.
E.g. “C:Program FilesJavajdk1.6.0_27”
4. Add new System Variable named “M2_HOME”, and set its
value to Apache Maven 2 installation directory.
E.g. “C:Program Filesapache-maven-2.2.1”
5. Append “;%JAVA_HOME%bin;%M2_HOME%bin” to System
Variable named “Path”.
6. Open Command Prompt and run “mvn –version” to verify.
All Rights Reserved © Joget Inc
Setting Up JDK and Apache Maven 2
• For Linux
1. Open Command Terminal.
2. Set environment variable “JAVA_HOME” to the location of
your JDK.
E.g. “export JAVA_HOME=/usr/java/jdk1.6.0_27”
3. Set environment variable “M2_HOME” to the location of your
Apache Maven.
E.g. “export M2_HOME=/usr/apache-maven-2.2.1”
4. Run “export PATH=$PATH:$JAVA_HOME/bin:
$M2_HOME/bin” to add both into environment variable
named “PATH”.
5. Run “mvn –version” to verify.
All Rights Reserved © Joget Inc
Chapter Review
• Install and set up required development tools.
All Rights Reserved © Joget Inc
Chapter 3
Checking out source code
All Rights Reserved © Joget Inc
Getting and Building Joget Workflow
Source Code
● Checkout the source from public mirror at GitHub at
https://github.com/jogetworkflow/jw-community/tree/6.0-SNAPSHOT
● Assuming you are using the CollabNet client, in the
directory you created for Joget Workflow source, run
svn co https://github.com/jogetworkflow/jw-community/tree/6.0-SNAPSHOT
to check out code from GitHub.
All Rights Reserved © Joget Inc
Chapter 4
Prepare dependency libraries
All Rights Reserved © Joget Inc
Install Third Party Libraries
• Unzip the “16-install-libraries.zip” or obtain it from
https://dev.joget.org/community/display/KBv6/Joget+Workflow+Open+Source
• In the extracted folder, run
"install_linux.sh" for Linux and Mac or
"install_win.bat" for Windows.
All Rights Reserved © Joget Inc
Sample output
C:Jogetinstall-librariesinstall-libraries>install_win.bat
C:Jogetinstall-librariesinstall-libraries>./apache-ant-1.7.1/bin/ant.bat -f lib/setup-maven_win.xml
Buildfile: libsetup-maven_win.xml
setup-maven:
[exec] [INFO] Scanning for projects...
[exec] [INFO]
[exec] [INFO]
[exec] [INFO] --- maven-install-plugin:2.4:install-file (default-cli) @ standalone-pom ---
[exec] [INFO] Installing E:DocDownloadsinstall-librariesinstall-librarieslibsqljdbc-4.0.jar to
C:Usersuser.m2repositorycommicrosoftsqljdbc4.0sqljdbc-4.0.jar
[exec] [INFO] ------------------------------------------------------------------------
[exec] [INFO] BUILD SUCCESS
[exec] [INFO] ------------------------------------------------------------------------
[exec] [INFO] Total time: 1.035 s
[exec] [INFO] Finished at: 2016-02-01T15:18:06+08:00
[exec] [INFO] Final Memory: 6M/243M
[exec] [INFO] ------------------------------------------------------------------------
[exec] [INFO] Scanning for projects...
[exec] [INFO]
[exec] [INFO] Using the builder
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
[exec] [INFO]
[exec] [INFO] ------------------------------------------------------------------------
[exec] [INFO] Building Maven Stub Project (No POM) 1
[exec] [INFO] ------------------------------------------------------------------------ [exec] [INFO] ---
maven-install-plugin:2.4:install-file (default-cli) @ standalone-pom ---
[exec] [INFO] Installing C:Jogetinstall-librariesinstall-librarieslibojdbc6-12.1.0.2.jar to
C:Usersuser.m2repositorycomoracleojdbc612.1.0.2ojdbc6-12.1.0.2.jar
[exec] [INFO] ------------------------------------------------------------------------
[exec] [INFO] BUILD SUCCESS
All Rights Reserved © Joget Inc
Chapter 5
Building from source
All Rights Reserved © Joget Inc
Preparing Test Database
• Before you can build the project, you will need to
configure the Datasource profile to a active Joget
database for the test cases to run.
• You may reuse your existing Joget’s database for this
purpose.
• Locate your home folder and create a “wflow” folder.
(To find out your current user folder on Windows, execute
echo %HOMEPATH%)
• Copy the “wflow” folder’s app_datasource.properties and
app_datasource-default.properties files from your existing Joget
installation folder into the new “wflow” folder.
All Rights Reserved © Joget Inc
Building from source
• Navigate to /wflow-app from your command
prompt/terminal and execute the following:-
mvn clean install
• A full build cycle may take up to 10 minutes to complete
depending on your machine’s performance and the
Internet connectivity.
All Rights Reserved © Joget Inc
Module Review
1. Introduction
2. Prepare development tools
3. Checking out source code
4. Prepare dependency libraries
5. Building from source
All Rights Reserved © Joget Inc
Recommended Further Learning
• Extend the usability of Joget by building a plugin.
All Rights Reserved © Joget Inc
Stay Connected with Joget Workflow
• http://www.joget.org
• http://community.joget.org
• http://twitter.com/jogetworkflow
• http://facebook.com/jogetworkflow
• http://youtube.com/jogetworkflow
• http://slideshare.net/joget

More Related Content

PPTX
Joget Workflow v6 Training Slides - 4 - Localizing your Joget Workflow
PPTX
Joget Workflow v6 Training Slides - 21 - Userview Key
PPTX
Joget Workflow v6 Training Slides - 17 - Building Plugins
PPTX
Joget Workflow v6 Training Slides - 18 - Integrating with External System
PPTX
Joget Workflow v6 Training Slides - 19 - Doing More with your Process Design
PPTX
Joget Workflow v6 Training Slides - 2 - Setting Up Joget Workflow
PPTX
Joget Workflow v6 Training Slides - 6 - Using your First Process Tool
PPTX
Joget Workflow v6 Training Slides - 8 - Designing your First Userview
Joget Workflow v6 Training Slides - 4 - Localizing your Joget Workflow
Joget Workflow v6 Training Slides - 21 - Userview Key
Joget Workflow v6 Training Slides - 17 - Building Plugins
Joget Workflow v6 Training Slides - 18 - Integrating with External System
Joget Workflow v6 Training Slides - 19 - Doing More with your Process Design
Joget Workflow v6 Training Slides - 2 - Setting Up Joget Workflow
Joget Workflow v6 Training Slides - 6 - Using your First Process Tool
Joget Workflow v6 Training Slides - 8 - Designing your First Userview

What's hot (20)

PPTX
Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...
PPTX
Joget Workflow v5 Training Slides - Module 17 - Building Plugins
PPTX
Joget Workflow v6 Training Slides - 9 - Hash Variable
PPTX
Joget Workflow v6 Training Slides - 20 - Basic System Administration
PPTX
Joget Workflow v6 Training Slides - 14 - Introduction to Reporting
PPTX
Joget Workflow v6 Training Slides - 7 - Designing your First Datalist
PPTX
Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...
PPTX
Joget Workflow v5 Training Slides - Module 4 - Localizing your Joget Workflow
PPTX
Joget Workflow v5 Training Slides - Module 14 - Introduction to reporting
PPTX
Joget Workflow v5 Training Slides - Module 8 - Designing your first Userview
PPTX
Joget Workflow v5 Training Slides - Module 12 - Version Control
PPTX
Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...
PPTX
Joget Workflow v6 Training Slides - 3 - Designing your First Process
PPTX
Joget Workflow v6 Training Slides - 11 - SLA and Deadlines
PPTX
Joget Workflow v5 Training Slides - Module 20 - Basic System Administration
PPTX
Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...
PPTX
Joget Workflow v5 Training Slides - Module 18 - Integrating with External System
PPTX
Joget Workflow v6 Training Slides - 1 - Introduction to Joget Workflow
PPTX
Joget Workflow v5 Training Slides - Module 9 - Hash variable
PPTX
Joget Workflow v4 Training - Module 14 - Introduction to Reporting
Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...
Joget Workflow v5 Training Slides - Module 17 - Building Plugins
Joget Workflow v6 Training Slides - 9 - Hash Variable
Joget Workflow v6 Training Slides - 20 - Basic System Administration
Joget Workflow v6 Training Slides - 14 - Introduction to Reporting
Joget Workflow v6 Training Slides - 7 - Designing your First Datalist
Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...
Joget Workflow v5 Training Slides - Module 4 - Localizing your Joget Workflow
Joget Workflow v5 Training Slides - Module 14 - Introduction to reporting
Joget Workflow v5 Training Slides - Module 8 - Designing your first Userview
Joget Workflow v5 Training Slides - Module 12 - Version Control
Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...
Joget Workflow v6 Training Slides - 3 - Designing your First Process
Joget Workflow v6 Training Slides - 11 - SLA and Deadlines
Joget Workflow v5 Training Slides - Module 20 - Basic System Administration
Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...
Joget Workflow v5 Training Slides - Module 18 - Integrating with External System
Joget Workflow v6 Training Slides - 1 - Introduction to Joget Workflow
Joget Workflow v5 Training Slides - Module 9 - Hash variable
Joget Workflow v4 Training - Module 14 - Introduction to Reporting
Ad

Similar to Joget Workflow v6 Training Slides - 16 - Preparing Development Environment (20)

PPTX
Joget Workflow v5 Training Slides - Module 2 - Setting up Joget Workflow
PPTX
Joget Workflow v4 Training - Module 2 - Setting up Joget Workflow
PDF
Easy joget v3 for the absolute beginner
PDF
Joget Workflow v4 Getting Started
PPTX
Joget Workflow v4 Training - Module 15 - Introduction to Plugin Architecture
PPTX
Joget Workflow v6 Training Slides - 15 - Introduction to Plugin Architecture
PPT
maven-for-maine-jug-090226091601-phpapp02.ppt
PDF
Joget v5 Getting Started Guide
PDF
Exploring Maven SVN GIT
PDF
Eclipse Che - A Revolutionary IDE for Distributed & Mainframe Development
PDF
jbang: Unleash the power of Java for shell scripting
PDF
Struts2 tutorial
PDF
Quarkus Annonation and Commands Cheat Sheet
PDF
Jsf tutorial
PPTX
PPTX
Introduction to apache maven
PDF
Java EE | Apache TomEE - Java EE Web Profile on Tomcat | Jonathan Gallimore
PDF
BMO - Intelligent Projects with Maven
PDF
Java, Eclipse, Maven & JSF tutorial
PDF
F3-DP-2015-Milata-Tomas-java-ee-batch-editor (1)
Joget Workflow v5 Training Slides - Module 2 - Setting up Joget Workflow
Joget Workflow v4 Training - Module 2 - Setting up Joget Workflow
Easy joget v3 for the absolute beginner
Joget Workflow v4 Getting Started
Joget Workflow v4 Training - Module 15 - Introduction to Plugin Architecture
Joget Workflow v6 Training Slides - 15 - Introduction to Plugin Architecture
maven-for-maine-jug-090226091601-phpapp02.ppt
Joget v5 Getting Started Guide
Exploring Maven SVN GIT
Eclipse Che - A Revolutionary IDE for Distributed & Mainframe Development
jbang: Unleash the power of Java for shell scripting
Struts2 tutorial
Quarkus Annonation and Commands Cheat Sheet
Jsf tutorial
Introduction to apache maven
Java EE | Apache TomEE - Java EE Web Profile on Tomcat | Jonathan Gallimore
BMO - Intelligent Projects with Maven
Java, Eclipse, Maven & JSF tutorial
F3-DP-2015-Milata-Tomas-java-ee-batch-editor (1)
Ad

More from Joget Workflow (6)

PPTX
Joget Workflow v6 Training Slides - 22 - Best Practices on Application Building
PPTX
Joget Workflow v6 Training Slides - 12 - Version Control
PPTX
Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...
PPTX
Joget Workflow v6 Training Slides - 5 - Designing your First Form
PPTX
Joget Workflow v5 Training Slides - Module 21 - Userview Key
PPTX
Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...
Joget Workflow v6 Training Slides - 22 - Best Practices on Application Building
Joget Workflow v6 Training Slides - 12 - Version Control
Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...
Joget Workflow v6 Training Slides - 5 - Designing your First Form
Joget Workflow v5 Training Slides - Module 21 - Userview Key
Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...

Recently uploaded (20)

PPTX
Essential Infomation Tech presentation.pptx
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
medical staffing services at VALiNTRY
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Understanding Forklifts - TECH EHS Solution
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Digital Strategies for Manufacturing Companies
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
top salesforce developer skills in 2025.pdf
Essential Infomation Tech presentation.pptx
Operating system designcfffgfgggggggvggggggggg
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Reimagine Home Health with the Power of Agentic AI​
Which alternative to Crystal Reports is best for small or large businesses.pdf
medical staffing services at VALiNTRY
PTS Company Brochure 2025 (1).pdf.......
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
CHAPTER 2 - PM Management and IT Context
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Upgrade and Innovation Strategies for SAP ERP Customers
Understanding Forklifts - TECH EHS Solution
How to Choose the Right IT Partner for Your Business in Malaysia
Digital Strategies for Manufacturing Companies
Wondershare Filmora 15 Crack With Activation Key [2025
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Softaken Excel to vCard Converter Software.pdf
top salesforce developer skills in 2025.pdf

Joget Workflow v6 Training Slides - 16 - Preparing Development Environment

  • 1. All Rights Reserved © Joget Inc Joget Workflow v6 Preparing Development Environment http://facebook.com/jogetworkflow http://twitter.com/jogetworkflow Last Revised on Oct 2018
  • 2. All Rights Reserved © Joget Inc Prerequisites 1. Basic application development management know- hows. (i.e. svn/versioning, Maven project etc)
  • 3. All Rights Reserved © Joget Inc Content 1. Introduction 2. Prepare development tools 3. Checking out source code 4. Prepare dependency libraries 5. Building from source
  • 4. All Rights Reserved © Joget Inc Chapter 1 Introduction
  • 5. All Rights Reserved © Joget Inc Introduction • In this module, we will be learning about the followings: – Prepare development tools – Checking out source code – Prepare dependency libraries – Building from source • Alternatively, you may also refer to https://dev.joget.org/community/display/KBv6/Joget+Workflow+Open+Source or YouTube https://www.youtube.com/watch?v=5k-mqaaT5RQ
  • 6. All Rights Reserved © Joget Inc Chapter 2 Prepare development tools
  • 7. All Rights Reserved © Joget Inc Tools • Download the following tools or get it in your Developer Training Materials and install. – NetBeans - http://netbeans.org/ – Apache Maven 2.2.1 or above - http://maven.apache.org/ – SVN client (optional) http://www.collab.net/downloads/subversion – JDK 6 or above http://www.java.com – MySQL 5 or above http://mysql.com
  • 8. All Rights Reserved © Joget Inc Setting Up JDK and Apache Maven 2 • For Windows 1. Open Window System Properties dialog. 2. Selecting the "Advanced" tab, and the "Environment Variables" button. 3. Add new System Variable named “JAVA_HOME”, and set its value to JDK installation directory. E.g. “C:Program FilesJavajdk1.6.0_27” 4. Add new System Variable named “M2_HOME”, and set its value to Apache Maven 2 installation directory. E.g. “C:Program Filesapache-maven-2.2.1” 5. Append “;%JAVA_HOME%bin;%M2_HOME%bin” to System Variable named “Path”. 6. Open Command Prompt and run “mvn –version” to verify.
  • 9. All Rights Reserved © Joget Inc Setting Up JDK and Apache Maven 2 • For Linux 1. Open Command Terminal. 2. Set environment variable “JAVA_HOME” to the location of your JDK. E.g. “export JAVA_HOME=/usr/java/jdk1.6.0_27” 3. Set environment variable “M2_HOME” to the location of your Apache Maven. E.g. “export M2_HOME=/usr/apache-maven-2.2.1” 4. Run “export PATH=$PATH:$JAVA_HOME/bin: $M2_HOME/bin” to add both into environment variable named “PATH”. 5. Run “mvn –version” to verify.
  • 10. All Rights Reserved © Joget Inc Chapter Review • Install and set up required development tools.
  • 11. All Rights Reserved © Joget Inc Chapter 3 Checking out source code
  • 12. All Rights Reserved © Joget Inc Getting and Building Joget Workflow Source Code ● Checkout the source from public mirror at GitHub at https://github.com/jogetworkflow/jw-community/tree/6.0-SNAPSHOT ● Assuming you are using the CollabNet client, in the directory you created for Joget Workflow source, run svn co https://github.com/jogetworkflow/jw-community/tree/6.0-SNAPSHOT to check out code from GitHub.
  • 13. All Rights Reserved © Joget Inc Chapter 4 Prepare dependency libraries
  • 14. All Rights Reserved © Joget Inc Install Third Party Libraries • Unzip the “16-install-libraries.zip” or obtain it from https://dev.joget.org/community/display/KBv6/Joget+Workflow+Open+Source • In the extracted folder, run "install_linux.sh" for Linux and Mac or "install_win.bat" for Windows.
  • 15. All Rights Reserved © Joget Inc Sample output C:Jogetinstall-librariesinstall-libraries>install_win.bat C:Jogetinstall-librariesinstall-libraries>./apache-ant-1.7.1/bin/ant.bat -f lib/setup-maven_win.xml Buildfile: libsetup-maven_win.xml setup-maven: [exec] [INFO] Scanning for projects... [exec] [INFO] [exec] [INFO] [exec] [INFO] --- maven-install-plugin:2.4:install-file (default-cli) @ standalone-pom --- [exec] [INFO] Installing E:DocDownloadsinstall-librariesinstall-librarieslibsqljdbc-4.0.jar to C:Usersuser.m2repositorycommicrosoftsqljdbc4.0sqljdbc-4.0.jar [exec] [INFO] ------------------------------------------------------------------------ [exec] [INFO] BUILD SUCCESS [exec] [INFO] ------------------------------------------------------------------------ [exec] [INFO] Total time: 1.035 s [exec] [INFO] Finished at: 2016-02-01T15:18:06+08:00 [exec] [INFO] Final Memory: 6M/243M [exec] [INFO] ------------------------------------------------------------------------ [exec] [INFO] Scanning for projects... [exec] [INFO] [exec] [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1 [exec] [INFO] [exec] [INFO] ------------------------------------------------------------------------ [exec] [INFO] Building Maven Stub Project (No POM) 1 [exec] [INFO] ------------------------------------------------------------------------ [exec] [INFO] --- maven-install-plugin:2.4:install-file (default-cli) @ standalone-pom --- [exec] [INFO] Installing C:Jogetinstall-librariesinstall-librarieslibojdbc6-12.1.0.2.jar to C:Usersuser.m2repositorycomoracleojdbc612.1.0.2ojdbc6-12.1.0.2.jar [exec] [INFO] ------------------------------------------------------------------------ [exec] [INFO] BUILD SUCCESS
  • 16. All Rights Reserved © Joget Inc Chapter 5 Building from source
  • 17. All Rights Reserved © Joget Inc Preparing Test Database • Before you can build the project, you will need to configure the Datasource profile to a active Joget database for the test cases to run. • You may reuse your existing Joget’s database for this purpose. • Locate your home folder and create a “wflow” folder. (To find out your current user folder on Windows, execute echo %HOMEPATH%) • Copy the “wflow” folder’s app_datasource.properties and app_datasource-default.properties files from your existing Joget installation folder into the new “wflow” folder.
  • 18. All Rights Reserved © Joget Inc Building from source • Navigate to /wflow-app from your command prompt/terminal and execute the following:- mvn clean install • A full build cycle may take up to 10 minutes to complete depending on your machine’s performance and the Internet connectivity.
  • 19. All Rights Reserved © Joget Inc Module Review 1. Introduction 2. Prepare development tools 3. Checking out source code 4. Prepare dependency libraries 5. Building from source
  • 20. All Rights Reserved © Joget Inc Recommended Further Learning • Extend the usability of Joget by building a plugin.
  • 21. All Rights Reserved © Joget Inc Stay Connected with Joget Workflow • http://www.joget.org • http://community.joget.org • http://twitter.com/jogetworkflow • http://facebook.com/jogetworkflow • http://youtube.com/jogetworkflow • http://slideshare.net/joget