Binary releases
You can obtain the last stable release of the software here.
Source
Alternatively, you can get the source code from our public repository and build from scratch. You’ll need Maven 3 and Git installed.
Stable
You will find the stable version on the default branch (master). It is usually only updated when there is a release.
On Linux and Mac type:
git clone git://github.com/dana-i2cat/opennaas.git
For Windows, instructions vary on the client you are using (if you use GitBash, the command will be exactly as above). Just use the URL above with anonymous access. Github’s help section is an excellent resource with instructions for several platforms.
Once this is setup, you can get latest updates by running:
mvn clean
git pull
Go into the project root and build:
cd opennaas/
mvn install
You will find the compiled OpenNaaS distribution target inside:
cd platform/target/
Development
If you don’t care so much about stability or simple want to get latest’s developments and fixes, move into the development branch. Just checkout the code as you would with master, but type the following before build:
cd opennaas/
git checkout developmvn install
In case the build is broken, or you would like to skip tests for a faster build, just type:
mvn install -DskipTests
As in master, you can get latest updates by running:
mvn clean
git pull
