Skip to content

Build Secucheck Locally

Ranjith K edited this page May 17, 2021 · 3 revisions

Build Secucheck application locally.

  1. Build Boomerang manually. Currently, Boomerang that is used by SecuCheck is not yet released. Therefore, Developers have to build the Boomerang locally for now.

Clone the boomerang repository.

git clone https://github.com/CodeShield-Security/SPDS.git

Then, checkout the hash commit (2a0836d091058f370787d67713327a5d1bae3c45) from the develop branch. And, build the project using the below command on the root directory.

cd SPDS
mvn clean install -DskipTests
  1. Clone "secucheck-core" project
git clone https://github.com/secure-software-engineering/secucheck-core.git
  1. Build the "secucheck-core" project. For this, run the mvn install command in the root directory of the secucheck-core project. If you have any problem building this project, please look at the "secucheck-core" documentation.
cd secucheck-core
mvn clean install
  1. Clone "secucheck" project
git clone https://github.com/secure-software-engineering/secucheck.git