Skip to content

OJB Web Portal Build Guide

mmackaysearch edited this page Feb 24, 2026 · 2 revisions

1. Ensure Java and Maven are installed on your local machine.

We will be using the command line to build a lot of the necessary components so ensure that Java (NOTE: At time of writing all components will be built with Java 8) and Maven are installed.

You can check that they are installed by using the following commands on Linux/MacOS:

java -version
mvn -version

If they return a version number, they are installed. Otherwise, you will need to install them.

2. Open a command prompt and navigate to the shared folder of where the OJBC main repository is pulled to.

This is typically the following command:

cd ~/git/main/shared

3. Run a Maven Clean Install of this directory.

Use this command:

mvn clean install

4. Navigate to the utilities folder in the parent directory and run a Maven clean install again.

cd ../utilities
mvn clean install

5. Maven clean install the state specific version of ojb-web-application-connector-extension.

Different states have different versions of this component so it is important to build it for the state you wish to deploy to.

6. Maven clean install ojb-web-application-connector in the main repository.

7. Maven clean install ojb-web-portal in the main repository.

Clone this wiki locally