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
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