-
Notifications
You must be signed in to change notification settings - Fork 104
Compilation
Sergio edited this page Dec 5, 2017
·
5 revisions
Follow current steps to compile Droidefense
To successfully compilate latest version of Droidefense, please follow next guidelines:
- Clone remote repository
git clone git@github.com:droidefense/engine.git
or if you have ssh banned on your network, use HTTPS instead as follows:
git clone https://github.com/droidefense/engine
git clone git@github.com:droidefense/engine.git
- Execute
build.sh
script
cd engine
./build.sh
In case you are wondering what the hell the script doing, please check it out:
#!/bin/bash
function prerequirements(){
echo " ########################################## "
echo ' Installing prerequisites...'
echo " ########################################## "
sudo apt install -y maven
}
function main(){
echo " ########################################## "
echo ' Building droidefense from current version'
echo " ########################################## "
mvn clean install
echo " Building done "
}
set -e
prerequirements
main
Droidefense project. 2016