Operating System | GNU/Linux, Mac OS X, MS Windows |
Java VM | Oracle JDK 6 |
Maven | 3.0.5 |
To build Babel from sources using Apache Maven, in a regular shell:
git clone https://github.com/babel-dsl/babel.git
cd babel
export MAVEN_OPTS="-XX:MaxPermSize=256m -Xmx1024m"
mvn install
If you want to also install the Babel Camel Archetype locally, you only need to add the archetype
maven profile to the previous script:
git clone https://github.com/babel-dsl/babel.git
cd babel
export MAVEN_OPTS="-XX:MaxPermSize=256m -Xmx1024m"
mvn -Parchetype install
To build Babel from sources using Sbt, in a regular shell:
git clone https://github.com/babel-dsl/babel.git
cd babel
export SBT_OPTS="-XX:MaxPermSize=256m -Xmx1024m"
sbt test publish-local
to generate the documentation, first install the sphinx documentation generator and then, run:
git clone https://github.com/babel-dsl/babel.git
cd babel/babel-doc
make html
#browse build/html/index.html
Note
Akka provides some nice documentation on how to generate documentation with Sphinx: Akka Sphinx Documentation