Skip to content

How to build from source

Maxopoly edited this page Apr 19, 2018 · 1 revision

Manually:

  • Make sure you have git and Maven installed
  • Clone angelia-core
  • Build and locally install angelia-core with Maven: mvn clean package install
  • Build this repository: mvn clean package
  • Retrieve your built jar from Angelia-cmd/target/

Through scripts:

Assuming git and Maven are installed and on the path:

git clone https://github.com/Maxopoly/Angelia-core.git
cd Angelia-core
mvn clean package install
cd ..
git clone https://github.com/Maxopoly/Angelia-cmd.git
cd Angelia-cmd
mvn clean package

or just:

git clone https://github.com/Maxopoly/Angelia-cmd.git
cd Angelia-cmd
bash buildFromScratch.sh
Clone this wiki locally